I found something that could solve my problem in Obj-c, but I'm not able to translate the code, so I'm asking for a Swift solution.
I'm parsing some data from a JSON file and i get an issue retrieving the date; here is the code :
println(data) // "Fri, 16 Jan 2015 11:49:00 +0100"
var dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "EEE, dd LLL yyyy HH:mm:ss ZZZ"
let formattedDate = dateFormatter.dateFromString(data)
println(formattedDate) // returns 'Optional(2015-01-16 11:49:00 +0100)' if running on an iOs Simulator
// returns 'nil' if runnig on an iPhone
Like I write in the code comments, i get correctly the optional type of the date if I run it on an iOs Simulator or in the playground, but i get nil if it is running on an iPhone.
Can anyone help? Thanks in advice..
P.S. Sorry for my bad english