uiactionsheet最後乙個按鈕沒響應,一般是cancelbutton,要稍微向上偏移一點才可以。
不過這不是常態,幾乎沒多少人碰到這個問題,這是在特定情況下才會發生,這個場景就是試用了uitabbar的時候才有。
參考:解決辦法:
uiactionsheet *action =
[[uiactionsheet alloc] initwithtitle:@"您是否撥打"
delegate:self
cancelbuttontitle:@"取消撥打"
destructivebuttontitle:@"撥打"
otherbuttontitles:@"加入**本",nil];
//[action showinview:self.view]; 把這行更換為下面這個
[action release];
據聞是tabbar剛好在取消按鈕的地方,所以離奇了,不過uiactionsheet是在tabbar上方,很難想象會出現這個問題。
swift中UIActionSheet的使用
方法1 方法2 例項化時新增 物件,同時注意新增協議 let alertsheet uiactionsheet title alerttitle,delegate self,cancelbuttontitle alertok,destructivebuttontitle alertcancel,ot...
swift中UIActionSheet的使用
objc view plain copy 方法1 方法2 例項化時新增 物件,同時注意新增協議 let alertsheet uiactionsheet title alerttitle,delegate self cancelbuttontitle alertok,destructivebutto...
UIActionSheet操作表單 IOS開發
什麼是操作表單?看圖 一看圖就明白了,毋需多說。uiactionsheet mysheet uiactionsheet alloc initwithtitle actionchoose delegate self cancelbuttontitle cancel destructivebuttont...