日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

Cocoa touch(十):UIDatePicker

發(fā)布時(shí)間:2025/6/17 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Cocoa touch(十):UIDatePicker 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

UIDatePicker,日期選取器

typedef NS_ENUM(NSInteger, UIDatePickerMode) {UIDatePickerModeTime, // Displays hour, minute, and optionally AM/PM designation depending on the locale setting (e.g. 6 | 53 | PM)UIDatePickerModeDate, // Displays month, day, and year depending on the locale setting (e.g. November | 15 | 2007)UIDatePickerModeDateAndTime, // Displays date, hour, minute, and optionally AM/PM designation depending on the locale setting (e.g. Wed Nov 15 | 6 | 53 | PM)UIDatePickerModeCountDownTimer // Displays hour and minute (e.g. 1 | 53) };@interface UIDatePicker : UIControl <NSCoding>@property(nonatomic) UIDatePickerMode datePickerMode; // default is UIDatePickerModeDateAndTime @property(nonatomic,retain) NSLocale *locale; // default is [NSLocale currentLocale]. setting nil returns to default @property(nonatomic,copy) NSCalendar *calendar; // default is [NSCalendar currentCalendar]. setting nil returns to default @property(nonatomic,retain) NSTimeZone *timeZone; // default is nil. use current time zone or time zone from calendar @property(nonatomic,retain) NSDate *date; // default is current date when picker created. Ignored in countdown timer mode. for that mode, picker starts at 0:00 @property(nonatomic,retain) NSDate *minimumDate; // specify min/max date range. default is nil. When min > max, the values are ignored. Ignored in countdown timer mode @property(nonatomic,retain) NSDate *maximumDate; // default is nil @property(nonatomic) NSTimeInterval countDownDuration; // for UIDatePickerModeCountDownTimer, ignored otherwise. default is 0.0. limit is 23:59 (86,399 seconds) @property(nonatomic) NSInteger minuteInterval; // display minutes wheel with interval. interval must be evenly divided into 60. default is 1. min is 1, max is 30- (void)setDate:(NSDate *)date animated:(BOOL)animated; // if animated is YES, animate the wheels of time to display the new date@end

?

轉(zhuǎn)載于:https://www.cnblogs.com/iprogrammer/p/3252698.html

總結(jié)

以上是生活随笔為你收集整理的Cocoa touch(十):UIDatePicker的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。