I have problem only with some devices NSDateFormatter returning null the date format from the server is "13:05, 10 November 2013".
NSDate *Now = [NSDate serverDate];
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:@"HH:mm, d MMM yyyy"];
NSDate *LastLogin = [dateFormat dateFromString:DateString];
On simulator and few devices works
LastLogin 2013-10-05 00:36:00 +0000 | Now 2013-11-25 14:50:51 +0000
but on some devices
LastLogin (null) | Now 2013-11-25 15:00:22 +0000