0
votes

I would like to know how to stop the right bar button from being selectable until the user has for-filled obligations.

I currently set up my right barbutton like this

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Search" style:UIBarButtonItemStyleDone target:self action:@selector(submitSearch)]; [self.navigationItem.rightBarButtonItem setStyle:UIControlStateDisabled];

And although it looks non selectable because I have set setstyle as disabled it is still selectable.

1

1 Answers

2
votes
[self.navigationItem.rightBarButtonItem setEnabled:NO]