isEqualToTimeZone:
タイムゾーンを比較して同じかを返します
-(BOOL)isEqualToTimeZone:(NSTimeZone *)aTimeZone:
解説
タイムゾーンを比較して同じかを返します。
返り値
( BOOL )
YES/NO
フレームワーク
Foundation
クラス
NSTimeZone
Instance Methods
使用可能
10.0
参照
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { if ([[NSTimeZone localTimeZone] isEqualToTimeZone:[NSTimeZone systemTimeZone]]){ NSLog(@"YES"); }else{ NSLog(@"NO"); } } @end