Objective C implementing a UIPickerView with a “Done” button

后端 未结 7 688
一向
一向 2020-12-03 08:56

I am trying to implement a \"Done\" button in a UIPickerView Similar to the one under this link

I looked in the class reference but I couldn t find it

Thank

7条回答
  •  一个人的身影
    2020-12-03 09:22

    I create a custom class, this supports multiple orientation:

    DateTimePicker.h

        @interface DateTimePicker : UIView {
    }
    
    @property (nonatomic, assign, readonly) UIDatePicker *picker;
    
    - (void) setMode: (UIDatePickerMode) mode;
    - (void) addTargetForDoneButton: (id) target action: (SEL) action;
    
    @end
    

    DateTimePicker.m

    #define MyDateTimePickerToolbarHeight 40
    
    @interface DateTimePicker()
    
    @property (nonatomic, assign, readwrite) UIDatePicker *picker;
    
    @property (nonatomic, assign) id doneTarget;
    @property (nonatomic, assign) SEL doneSelector;
    
    - (void) donePressed;
    
    @end
    
    
    @implementation DateTimePicker
    
    @synthesize picker = _picker;
    
    @synthesize doneTarget = _doneTarget;
    @synthesize doneSelector = _doneSelector;
    
    - (id) initWithFrame: (CGRect) frame {
        if ((self = [super initWithFrame: frame])) {
            self.backgroundColor = [UIColor clearColor];
    
            UIDatePicker *picker = [[UIDatePicker alloc] initWithFrame: CGRectMake(0, MyDateTimePickerToolbarHeight, frame.size.width, frame.size.height - MyDateTimePickerToolbarHeight)];
            [self addSubview: picker];
    
            UIToolbar *toolbar = [[UIToolbar alloc] initWithFrame: CGRectMake(0, 0, frame.size.width, MyDateTimePickerToolbarHeight)];
            toolbar.barStyle = UIBarStyleBlackOpaque;
            toolbar.autoresizingMask = UIViewAutoresizingFlexibleWidth;
    
            UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithTitle: @"Done" style: UIBarButtonItemStyleBordered target: self action: @selector(donePressed)];
            UIBarButtonItem* flexibleSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
            toolbar.items = [NSArray arrayWithObjects:flexibleSpace, doneButton, nil];
    
            [self addSubview: toolbar];
    
            self.picker = picker;
            picker.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleTopMargin|UIViewAutoresizingFlexibleBottomMargin;
    
            self.autoresizesSubviews = YES;
            self.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleTopMargin|UIViewAutoresizingFlexibleBottomMargin;
        }
        return self;
    }
    
    - (void) setMode: (UIDatePickerMode) mode {
        self.picker.datePickerMode = mode;
    }
    
    - (void) donePressed {
        if (self.doneTarget) {
            [self.doneTarget performSelector:self.doneSelector withObject:nil afterDelay:0];
        }
    }
    
    - (void) addTargetForDoneButton: (id) target action: (SEL) action {
        self.doneTarget = target;
        self.doneSelector = action;
    }
    

    Using custom view in your view controller:

    - (void)viewDidLoad
    {
        [super viewDidLoad];
        UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
        [button addTarget:self
                   action:@selector(buttonPressed:)
         forControlEvents:UIControlEventTouchDown];
        [button setTitle:@"Show picker" forState:UIControlStateNormal];
        button.frame = CGRectMake(100, 50, 100, 40.0);
        [self.view addSubview:button];
    
        CGRect screenRect = [[UIScreen mainScreen] bounds];
        CGFloat screenWidth = screenRect.size.width;
        CGFloat screenHeight = screenRect.size.height;
        picker = [[DateTimePicker alloc] initWithFrame:CGRectMake(0, screenHeight/2 - 35, screenWidth, screenHeight/2 + 35)];
        [picker addTargetForDoneButton:self action:@selector(donePressed)];
        [self.view addSubview:picker];
        picker.hidden = YES;
        [picker setMode:UIDatePickerModeDate];
    }
    
    -(void)donePressed {
        picker.hidden = YES;
    }
    
    -(void)buttonPressed:(id)sender {
        picker.hidden = NO;
    }
    

    Hope this helps. :)

提交回复
热议问题