How do I get the current date in Cocoa

后端 未结 14 509
醉酒成梦
醉酒成梦 2020-12-04 09:39

I\'m getting started developing for the iPhone and as such I am looking at different tutorials online as well as trying some different things out myself. Currently, I\'m try

14条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-04 10:15

    + (NSString *)displayCurrentTimeWithAMPM 
    {
        NSDateFormatter *outputFormatter = [[NSDateFormatter alloc] init];
        [outputFormatter setDateFormat:@"h:mm aa"];
    
        NSString *dateTime = [NSString stringWithFormat:@"%@",[outputFormatter stringFromDate:[NSDate date]]];
    
        return dateTime;
    }
    

    return 3:33 AM

提交回复
热议问题