最近,在作ios7 適配時,偶然發現,在用actionSheet選擇後(圖1),彈出(圖2)界面時,彈出界面若是是用 addSubView的話,會與actionSheet的彈出衝突,結果會使咱們的彈出界面一閃就消失了。ios
解決方法:函數
在- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex回調函數中,加上下面一句spa
[actionSheet dismissWithClickedButtonIndex:buttonIndex animated:NO];blog