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
Since UIButton inherits from UIView, you can just set the hidden property on the button (via UIButton doc)
UIView
hidden
button.hidden = YES;