当前位置:  开发笔记 > IOS > 正文

如何使用Cocoa获取当前时间?

如何解决《如何使用Cocoa获取当前时间?》经验,为你挑选了2个好方法。

如何使用Objective-C获取Cocoa中的当前小时?



1> Jason Coco..:

首先,您应该阅读Cocoa的日期和时间编程主题.这将使您很好地理解使用Cocoa中提供的各种日期/时间/日历对象进行日期的高级转换.

但是,此代码片段将回答您的具体问题:

- (NSInteger)currentHour
{
    // In practice, these calls can be combined
    NSDate *now = [NSDate date];
    NSCalendar *calendar = [NSCalendar currentCalendar];
    NSDateComponents *components = [calendar components:NSHourCalendarUnit fromDate:now];

    return [components hour];
}



2> andi..:

一种方法是使用NSCalendar和NSDateComponents

NSDate *now = [NSDate date];
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *components = [calendar components:NSHourCalendarUnit fromDate:now];
NSInteger hour = [components hour];

推荐阅读
Gbom2402851125
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有