initWithTimeIntervalSinceReferenceDate:
2001年1月1日0時0分0秒から指定した秒数分進んだ(遅れた)時間を返します
-(id)initWithTimeIntervalSinceReferenceDate:(NSTimeInterval)seconds:
解説
グリニッジ標準時(GMT)の2001年1月1日0時0分0秒から指定した秒数分進んだ(遅れた)時間を返します。
未来の日付けはプラス、過去の日付けはマイナスをセットします。
【NSTimeInterval】
● 秒数をdouble数値で指定します。
返り値
( id )
時間
引数
( NSTimeInterval )seconds
時間間隔(秒)
フレームワーク
Foundation
クラス
NSDate
Instance Methods
使用可能
10.0
参照
+ dateWithTimeIntervalSinceReferenceDate:
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSDate *theDate = [[NSDate alloc] initWithTimeIntervalSinceReferenceDate:3600]; [myOutlet setStringValue:[theDate description]]; } @end