0
私のtitleBarのボタンを有効にする必要があります。そして、このコードはそれを有効にしません。どんな考え?私のtitleBarでUIButtonを有効にできません
TitleBar.m
@property (weak, nonatomic) IBOutlet UIButton *homeButton;
-(void) shouldShowHomeButton:(BOOL)shouldShow
{
self.homeButton.enabled=shouldShow;
}
OtherViewController
{
TitleBarViewController *titleBarController = [[TitleBarViewController alloc]init];
[titleBarController shouldShowHomeButton:YES];
}
私はにブレークポイントを置く - (無効)shouldShowHomeButton:(BOOL)shouldShow、それはそこで起こっています。ボタンは更新されません
メソッド名 'ボタンの_visible_を作るのではなく、それを可能にされて何を言ってるのか示唆shouldShowHomeButton'。その場合、ボタンの 'hidden'プロパティをYESに設定する必要があります。 – davidf2281
私はそれを有効にする必要があります、親切にメソッド名を無視してください – Supermannoying