madjid / MMPickerView

An easy to use and customizable PickerView for your iOS app.
MIT License
237 stars 59 forks source link

Dismiss PickerView #21

Open docash59 opened 9 years ago

docash59 commented 9 years ago

How can I dismiss the PickerView when going back a segue programmatically?

buguibu commented 9 years ago

I'm doing this

-(void) viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
    [MMPickerView dismissWithCompletion:nil];
}

But i'm having problems with my side menu.