In Xcode (iOS), I have a screen with a combination of buttons and text fields. However, they look different. Is there a way that I can have a button look like a textfield? Or is there a way I can make a textfield act like a button (perform some action when pressed and don’t bring up the keyboard)?
Thanks
You can try one of these:
textFieldShouldBeginEditing:UITextFieldDelegateprotocol methodSubclassing is also an option, but it will probably complicate your task too much.