我想在我的手机应用程序上隐藏一个按钮,然后单击另一个按钮,它就会出现。我设法通过单击使按钮消失,但无法弄清楚相反的情况。我也是 Objective-C 的新手,你可能会说,所以任何改进我的代码的技巧都会有所帮助。谢谢!
。H :
@property(nonatomic,retain) IBOutlet UIButton* button1 ;
-(IBAction)buttonTouch:(id)sender ;
.m:
@synthesize button1=_button1;
-(BOOL)hideOutlets {
_button1.hidden=TRUE;
}
-(void)buttonTouch:(id)sender {
_button1.hidden = !_button1.hidden;
}