美文网首页
UIDatePicker.h

UIDatePicker.h

作者: ShenYj | 来源:发表于2016-09-02 21:07 被阅读11次

#import <Foundation/Foundation.h>
#import <UIKit/UIControl.h>
#import <UIKit/UIKitDefines.h>

typedef NS_ENUM(NSInteger, UIDatePickerMode) {
    UIDatePickerModeTime,          
    UIDatePickerModeDate,          
    UIDatePickerModeDateAndTime,   
    UIDatePickerModeCountDownTimer,
};

NS_CLASS_AVAILABLE_IOS(2_0) @interface UIDatePicker : UIControl <NSCoding>
@property (nonatomic) UIDatePickerMode datePickerMode;

@property (nonatomic, retain) NSLocale   *locale;       //  区域
@property (nonatomic, copy)   NSCalendar *calendar;     //  日历
@property (nonatomic, retain) NSTimeZone *timeZone;     //  时区

@property (nonatomic, retain) NSDate *date;             //  时间
@property (nonatomic, retain) NSDate *minimumDate;      //  显示的最早的时间
@property (nonatomic, retain) NSDate *maximumDate;      //  显示的最晚的时间
    
@property (nonatomic) NSTimeInterval countDownDuration;
@property (nonatomic) NSInteger      minuteInterval;   

- (void)setDate:(NSDate *)date animated:(BOOL)animated;
@end



网友评论

      本文标题:UIDatePicker.h

      本文链接:https://www.haomeiwen.com/subject/mdlkettx.html