Translate

2015年4月9日 星期四

DataPicker


//選擇時間格式
- (IBAction)selectvalue:(UIDatePicker *)sender {
    
    NSDateFormatter *fmt = [[NSDateFormatter alloc] init];
    [fmt setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    NSLog(@"設定時間:%@",[fmt stringFromDate:sender.date]);
    
}


//另一種寫法,如果你要將現在的時間跟選的時間做倒數計時的話
- (IBAction) selectvalue:(UIDatePicker *)sender {
    
    NSTimeInterval n = sender.countDownDuration;
    NSLog(@"倒數計時秒數為:@%0f",n);
}

沒有留言:

張貼留言