Domande taggate «nsdateformatter»

4
Qual è il modo migliore per gestire le impostazioni internazionali "feechur" di NSDateFormatter?
Sembra che NSDateFormatterabbia una "caratteristica" che ti morde inaspettatamente: se esegui una semplice operazione di formattazione "fissa" come: NSDateFormatter* fmt = [[NSDateFormatter alloc] init]; [fmt setDateFormat:@"yyyyMMddHHmmss"]; NSString* dateStr = [fmt stringFromDate:someDate]; [fmt release]; Quindi funziona bene negli Stati Uniti e nella maggior parte dei locali FINO A ... qualcuno con …

18
Formato data in Swift
Come posso convertire questo datetime dalla data? Da questo: 29-02-2016 12:24:26 a: 29 febbraio 2016 Finora, questo è il mio codice e restituisce un valore nullo: let dateFormatter = NSDateFormatter() dateFormatter.dateFormat = "MM-dd-yyyy" dateFormatter.timeZone = NSTimeZone(name: "UTC") let date: NSDate? = dateFormatter.dateFromString("2016-02-29 12:24:26") print(date)



10
Come posso ottenere una data ISO 8601 su iOS?
È abbastanza facile ottenere la stringa della data ISO 8601 (ad esempio 2004-02-12T15:19:21+00:00) in PHP tramite date('c'), ma come si ottiene in Objective-C (iPhone)? C'è un modo altrettanto breve per farlo? Ecco la lunga strada che ho trovato per farlo: NSDateFormatter* dateFormatter = [[[NSDateFormatter alloc] init] autorelease]; dateFormatter.dateFormat = @"yyyy-MM-dd'T'HH:mm:ssZ"; …



Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.