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

UIActionSheet动态添加按钮

时间:2014-12-02 14:54:22      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   io   color   sp   on   div   

效果图:

bubuko.com,布布扣

代码:

//点击任何处,弹出UIActionSheet
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    UIActionSheet *sheet=[[UIActionSheet alloc]initWithTitle:@"标题" delegate:self cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitles:nil, nil];
    
    // 逐个添加按钮(比如可以是数组循环)
    [sheet addButtonWithTitle:@"Item A"];
    [sheet addButtonWithTitle:@"Item B"];
    [sheet addButtonWithTitle:@"Item C"];
    // 同时添加一个取消按钮
    [sheet addButtonWithTitle:@"Cancel"];
    
    sheet.cancelButtonIndex = sheet.numberOfButtons-1;
    [sheet showInView:self.view];

}

 

UIActionSheet动态添加按钮

标签:des   style   blog   http   io   color   sp   on   div   

原文地址:http://www.cnblogs.com/yang-guang-girl/p/4137371.html

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