资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

iOS UIActionSheet的基本使用

NS_CLASS_DEPRECATED_IOS(2_0, 8_3, "UIActionSheet is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleActionSheet instead") __TVOS_PROHIBITED

创新互联公司是专业的古城网站建设公司,古城接单;提供成都网站制作、成都做网站、外贸营销网站建设,网页设计,网站设计,建网站,PHP网站建设等专业做网站服务;采用PHP框架,可快速的进行古城网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,专业的做网站团队,希望更多企业前来合作!

在iOS8之后UIActionSheet (以及它们各自的 delegate protocols)已经被弃用,用UIAlertController来代替,一下是iOS8之前和之后的2种做法:

double version = [[UIDevice currentDevice].systemVersion doubleValue];//判定系统版本。

 if(version>=8.0f){

    UIAlertController *alertController = [UIAlertControlleralertControllerWithTitle:@"提示"message:nilpreferredStyle:UIAlertControllerStyleActionSheet];

     [alertControlleraddAction:[UIAlertActionactionWithTitle:@"确定"style:UIAlertActionStyleDefaulthandler:^(UIAlertAction * _Nonnull action) {

         NSLog(@"确定");

     }]];

     [alertControlleraddAction:[UIAlertActionactionWithTitle:@"取消"style:UIAlertActionStyleDestructivehandler:^(UIAlertAction * _Nonnull action) {

         NSLog(@"取消");

     }]];

     [selfpresentViewController:alertControlleranimated:YEScompletion:nil];

 

 }else{

     #pragma clang diagnostic push

     #pragma clang diagnostic ignored "-Wdeprecated-declarations"

    UIActionSheet *sheetView = [[UIActionSheetalloc]initWithTitle:@"提示"delegate:selfcancelButtonTitle:nildestructiveButtonTitle:nilotherButtonTitles:@"确定",@"取消", nil];

     #pragma clang diagnostic pop

     sheetView.actionSheetStyle = UIActionSheetStyleDefault;

     [sheetView showInView:self.view];

     }

#pragma mark actionSheet_delegate 点击事件

- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex NS_DEPRECATED_IOS(2_0, 8_3) __TVOS_PROHIBITED{

    NSLog(@"%@",@(buttonIndex));

}


文章题目:iOS UIActionSheet的基本使用
本文地址:http://cdkjz.cn/article/ghgijp.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220