Unhide UIButton
I have a split view app with a button in the detail view. I have set the button as hidden in the Inspector in Interface Builder. I want it to be visible though, when the user selects an file from the table. Where 开发者_JAVA百科should i insert the following line to make this happen?
myButton.hidden = NO;
It could be in your didSelectRowAtIndexPath method.
精彩评论