iPhoneアプリのボタンを非表示にしてから、別のボタンをクリックすると表示されます。ボタンをクリックして非表示にすることはできましたが、その逆はわかりません。おそらくおわかりのように、私は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;
}