我不断收到 UIView 可能无法响应 selectedSegmentIndex 的警告。我尝试了类型转换,但我无法摆脱警告。我假设我的演员阵容不正确。
为了避免警告,输入强制转换的正确方法是什么?
- (IBAction)segmentedControlIndexChanged:(id)sender
{
switch ([[[[self.view viewWithTag:100] viewWithTag:202] viewWithTag:203] selectedSegmentIndex]) {
case 0:
// code here
break;
case 1:
// code here
break;
default:
break;
}
}