iPhone: Adding a Done button within a pop up DatePicker frame

前端 未结 5 865
我寻月下人不归
我寻月下人不归 2020-12-17 05:12

I pop up a DatePicker with the following. Now I\'m trying to add a Done button at the top of the pop up frame.

-(IBAction) contactBDayDatePicker{

NSLog(@         


        
5条回答
  •  余生分开走
    2020-12-17 05:34

    I've done basically the exact same thing. I subclassed UIView. It animates up and everything. Here's some code for you:

    #import 
    
    #define MyDateTimePickerHeight 260
    
    @interface MyDateTimePicker : UIView {
    }
    
    @property (nonatomic, assign, readonly) UIDatePicker *picker;
    
    - (void) setMode: (UIDatePickerMode) mode;
    - (void) setHidden: (BOOL) hidden animated: (BOOL) animated;
    - (void) addTargetForDoneButton: (id) target action: (SEL) action;
    
    @end
    
    
    #define MyDateTimePickerPickerHeight 216
    #define MyDateTimePickerToolbarHeight 44
    
    @interface MyDateTimePicker() 
    
    @property (nonatomic, assign, readwrite) UIDatePicker *picker;
    @property (nonatomic, assign) CGRect originalFrame;
    
    @property (nonatomic, assign) id doneTarget;
    @property (nonatomic, assign) SEL doneSelector;
    
    - (void) donePressed;
    
    @end
    
    
    @implementation MyDateTimePicker
    
    @synthesize picker = _picker;
    @synthesize originalFrame = _originalFrame;
    
    @synthesize doneTarget = _doneTarget;
    @synthesize doneSelector = _doneSelector;
    
    - (id) initWithFrame: (CGRect) frame {
        if ((self = [super initWithFrame: frame])) {
            self.originalFrame = frame;
            self.backgroundColor = [UIColor clearColor];
    
            CGFloat width = self.bounds.size.width;
            UIDatePicker *picker = [[[UIDatePicker alloc] initWithFrame: CGRectMake(0, 0, width, MyDateTimePickerPickerHeight)] autorelease];
            [self addSubview: picker];
    
            UIToolbar *toolbar = [[[UIToolbar alloc] initWithFrame: CGRectMake(0, MyDateTimePickerPickerHeight, width, MyDateTimePickerToolbarHeight)] autorelease];
            toolbar.barStyle = UIBarStyleBlackOpaque;
    
            UIBarButtonItem *doneButton = [[[UIBarButtonItem alloc] initWithTitle: @"Done" style: UIBarButtonItemStyleBordered target: self action: @selector(donePressed)] autorelease];
            doneButton.width = width - 20;
            toolbar.items = [NSArray arrayWithObject: doneButton];
            [self addSubview: toolbar];
    
            self.picker = picker;
        }
        return self;
    }
    
    - (void)dealloc {
        [super dealloc];
    }
    
    - (void) setMode: (UIDatePickerMode) mode {
        self.picker.datePickerMode = mode;
    }
    
    - (void) donePressed {
        if (self.doneTarget) {
            [self.doneTarget performSelector: self.doneSelector];
        }
    }
    
    - (void) addTargetForDoneButton: (id) target action: (SEL) action {
        self.doneTarget = target;
        self.doneSelector = action;
    }
    
    - (void) setHidden: (BOOL) hidden animated: (BOOL) animated {
        CGRect newFrame = self.originalFrame;
        newFrame.origin.y += hidden ? MyDateTimePickerHeight : 0;
        if (animated) {
            [UIView beginAnimations: @"animateDateTimePicker" context: nil];
            [UIView setAnimationDuration: MyConstantsElementAnimationLength];
            [UIView setAnimationCurve: UIViewAnimationCurveEaseOut];
    
            self.frame = newFrame;      
    
            [UIView commitAnimations]; 
        } else {
            self.frame = newFrame;      
        }
    }
    
    @end
    

提交回复
热议问题