I am using UITextView to edit text. I want to use two UIButtons Edit and Save. Initially I want to show edit UIButton, when the user click
UITextView
UIButtons
UIButton
Simply Add IBoutlet property in .h file. like
@property (strong, nonatomic) IBOutlet UIButton *resendOtpButtom;
then add
_resendOtpButtom.hidden = YES; in .m file.