一旦UIActionSheet被解雇,屏幕就会被锁定

时间:2011-07-22 21:13:31

标签: iphone uiactionsheet

我驳回了UIActionSheet,但屏幕被锁定并且没有响应。中心变得高亮,边缘区域的其余部分变暗。

-(void)actionSheet:(UIActionSheet *)menu didDismissWithButtonIndex:(NSInteger)buttonIndex 
{
    switch (buttonIndex) {
        case 0: 
            return;
        case 1: 
            return;
        case 2: 
            return;
    }
}

1 个答案:

答案 0 :(得分:0)

在UIAlertView消失之前UIActionSheet的问题就出现了。我通过调用动作在0.3秒的延迟后呈现UIActionSheet来解决了这个问题。