您的位置:首页 > 其它

【Foundation-72-3】NSTimeZone - 时令

2015-10-18 13:59 295 查看
@interface NSTimeZone :
NSObject <NSCopying,
NSSecureCoding>

@property (readonly,
copy) NSString *name;

@property (readonly,
copy) NSData *data;

- (NSInteger)secondsFromGMTForDate:(NSDate *)aDate;
时间与时区的时差 s
- (NSString *)abbreviationForDate:(NSDate *)aDate;
时间的标准缩写
- (BOOL)isDaylightSavingTimeForDate:(NSDate *)aDate;
夏时令
- (NSTimeInterval)daylightSavingTimeOffsetForDate:(NSDate *)aDate
NS_AVAILABLE(10_5,
2_0);
- (NSDate *)nextDaylightSavingTimeTransitionAfterDate:(NSDate *)aDate
NS_AVAILABLE(10_5,
2_0);

@end
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: