Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「2012-09-06 04:57:00.000」という形式の日付文字列があります。その文字列の時間を 04:57AM のように区切る必要があります。これから私を助けて?
NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; [formatter setDateFormat:@"hh:mm:ss a"]; NSString *timeStr = [formatter stringFromDate:[NSDate date]];
上記のコードはARCを使用しています。そうでない場合は、次のようなフォーマッタをリリースする必要があります
formatter release