我驳回了UIActionSheet,但屏幕被锁定并且没有响应。中心变得高亮,边缘区域的其余部分变暗。
-(void)actionSheet:(UIActionSheet *)menu didDismissWithButtonIndex:(NSInteger)buttonIndex
{
switch (buttonIndex) {
case 0:
return;
case 1:
return;
case 2:
return;
}
}
答案 0 :(得分:0)
在UIAlertView消失之前UIActionSheet的问题就出现了。我通过调用动作在0.3秒的延迟后呈现UIActionSheet来解决了这个问题。