首页 > 其他 > 详细

UIActionSheet添加多个otherButtonTitles

时间:2014-05-22 09:51:05      阅读:469      评论:0      收藏:0      [点我收藏+]

关于UIActionSheet,我们经常用到的就是

UIActionSheet *actionSheet = [[UIActionSheet alloc]initWithTitle:@"请选择" delegate:self cancelButtonTitle:@"取消"destructiveButtonTitle:@"确定" otherButtonTitles:@"1",@"2",@"3",nil];

但是当otherButtonTitles要显示一个数组的时候并不是用

[Ary objectAtIndex:i]

如果这样用的话就会出错,就算不出错,也会pop[Ary count]次

所以,可以这样

 UIActionSheet *actionSheet = [[UIActionSheet alloc]initWithTitle:@"请选择" delegate:self cancelButtonTitle:@"取消"destructiveButtonTitle:@"确定" otherButtonTitles:nil];

  //

    for(int j=0;j<[allAry count];j++)

    {

        NSString *str=[[NSString alloc]initWithFormat:@"%@",[allAry objectAtIndex:j]];

        [actionSheet addButtonWithTitle:str];

                       

    }

    [actionSheet showInView:self.view];

大功告成

UIActionSheet添加多个otherButtonTitles,布布扣,bubuko.com

UIActionSheet添加多个otherButtonTitles

原文:http://blog.csdn.net/u012605210/article/details/26285527

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!