我如何顯示UIDatePicker
格式HH:MM:SS
,因爲UIDatePicker
中沒有此模式。目前它顯示日期和時間。我知道,我必須使用NSDate
格式。但我不知道如何使用它。我該如何顯示UIDatePicker HH:MM:SS
我需要這樣做因爲我得到的格式爲HH:MM:SS
。需要在拾取器上顯示它,然後在保存之後更改爲任何值。
下面是我用來創建自定義選取器的代碼。
CGRect pickerFrame = CGRectMake(0,self.view.bounds.size.height-250,0,0);
UIDatePicker *myPicker = [[UIDatePicker alloc] initWithFrame:pickerFrame];
myPicker.backgroundColor = [UIColor lightTextColor];
myPicker.layer.cornerRadius = 10;
myPicker.layer.masksToBounds=YES;
如何以及在哪裏可以使用格式化程序,以便它顯示以下格式。
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"HH:mm:ss"];
請檢查這兩個鏈接1. http://stackoverflow.com/questions/16734557/custom-uipickerview-with-three-components-each-showing-label-on-selection-indica和2. http:// stackoverflow.com/questions/10999575/uipickerview-that-looks-like-uidatepicker-but-with-seconds可能會幫助你 –