gpt4 book ai didi

iphone - 定时器模式下的 DatePicker - 如何获取值

转载 作者:行者123 更新时间:2023-12-03 18:43:27 25 4
gpt4 key购买 nike

我正在尝试在倒计时模式下获取日期选择器,以简单地允许我选择分钟和秒,然后在单击按钮时获取该值。我在 IB 中设置了选择器并使用此代码,但当我选择分钟和小时的任意组合并单击按钮时,结果始终为 Null...显然我错过了一些东西。任何有关使其正常工作的帮助将不胜感激。

@interface ThisPicker : UIViewController {

IBOutlet UIDatePicker *datePicker;

}

-(IBAction)buttonPressed:(id)sender;

@end

@implementation ThisPicker

-(IBAction)buttonPressed:(id)sender{

datePicker = [[UIDatePicker alloc] init];
datePicker.datePickerMode = UIDatePickerModeCountDownTimer;

NSLog(@"%@",[datePicker countDownDuration]);

}

@end

最佳答案

如果您想要小时分钟格式

-(IBAction)buttonPressed:(id)sender
{


NSDateFormatter *dateformatter = [[NSDateFormatter alloc] init];
[dateformatter setDateFormat:@"HH:mm:ss"];
NSLog(@"%@",[dateformatter stringFromDate:[datePicker date]]);

}

关于iphone - 定时器模式下的 DatePicker - 如何获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4431003/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com