在iOS8以前,UIActionSheet用的代理方法爲spa
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex代理
在iOS8以後這種代理方法沒法調用相冊相機等,而且警告--Warning: Attempt to present <UIImagePickerController: 0x15d933a00> on 。。。,緣由在警告裏說得比較明白了,由於已經有actionsheet存在了,不能present新的。此時咱們選擇新的委託方法it
- (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndexio