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
Instead of visible, the property you are looking for is hidden.
saveButton.hidden = YES;
That should do the trick.