I have a navigation controller, in its navigation bar i've 2 right bar button items, I want to disable one right bar button when the other is being clicked/tapped. How to achieve this??
Thanks in advance.
|
I have a navigation controller, in its navigation bar i've 2 right bar button items, I want to disable one right bar button when the other is being clicked/tapped. How to achieve this?? Thanks in advance. |
|||
|
Unfortunately If you want to do something when the user presses and releases a button (disable/re-enable other buttons) you might have to get your hands dirty with some custom On a personal note: pressing more than one bar button at the same time is not very common and shouldn't present a problem, whatever implementation you may have. |
|||
|
|
UIBarButtonItem *btnONe;andUIBarButtonItem *btnTwo;and in your Button Action of btnTwo You can Disable By calling the Method :btnOne.Enable=NO;and Viceversa. – Siba Prasad Hota Nov 23 '12 at 13:49