码迷,mamicode.com
首页 > 其他好文 > 详细

UIActionSheet添加多个otherButtonTitles

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

标签:des   style   c   color   a   int   

关于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

标签:des   style   c   color   a   int   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!