Purpose: I am attempting to toggle the "Save" UIBarButtonItem with the "Hide Keyboard" UIBarButtonItem whenever the Keyboard appears (and then do the opposite when the "Hide Keyboard" button is clicked).
So far I have created two UIBarButtonItems and connected them both to Interface Builder.
@property (weak, nonatomic) IBOutlet UIBarButtonItem *saveButton;
@property (weak, nonatomic) IBOutlet UIBarButtonItem *hideKeyButton;
This is the code I have setup so far in my main:
- (void)keyboardDidShow:(NSNotification *)aNotification {
// Show HideKey Button
// Hide Save Button
}
- (void)keyboardWillHide:(NSNotification *)aNotification {
// Show Save Button
// Hide HideKey Button
}
On Interface Builder, the Save button is present by default. Programatically, how do I show the HideKey button and Hide the Save button? Thanks.