ボタンがあります。インターフェイスビルダーで無効に設定しました。procedBtnを有効にする前に選択したいラジオボタンがあります。onRadioBtn 関数で、proceedBtn を有効に設定する方法。
-(IBAction)onRadioBtn:(RadioButton*)sender
{
Singleton *single = [Singleton sharedInstance];
_statusLabel.text = [NSString stringWithFormat:@"Selected: %@", sender.titleLabel.text];
single.rb = sender.titleLabel.text;
NSLog(@"%@", sender.titleLabel.text);
}
- (IBAction)proceedBtn:(UIButton *)sender
{
Singleton *single = [Singleton sharedInstance];
NSLog(@"%@", single.rb);
if([single.rb isEqualToString: @"Choose Friend(s)"])
[self nameWallToFriends];
else
[self nameWallToChooseHome];
}