別のViewControllerのUITableviewでUIButtonを無効にしたい:
SecondViewController 内で試してみましたが、_buttonDesc を無効にするだけで、buttonCell はまだ有効です。
- buttonCell は、UITableView 内のボタンです。
- buttonDesc は、SecondViewController 内の Button Comprar です。
.
-(IBAction)comprar
{
[_buttonDesc setTitleColor:[UIColor grayColor] forState:UIControlStateDisabled];
[_buttonDesc setEnabled:NO];
LivroCell *lvc = [[LivroCell alloc]init];
[lvc.buttonCell setEnabled:NO];
}