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

UIActionSheet动态添加按钮

时间:2015-06-29 14:49:27      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:

 

代码:

ViewController.h

@interface ViewController : UIViewController
<UIActionSheetDelegate>

@end

 

ViewController.m

#pragma -mark -functions
//点击任何处,弹出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];
    
}
#pragma -mark -UIActionSheetDelegate
-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
    NSLog(@"--buttonIndex--%ld",buttonIndex);
}

 

UIActionSheet动态添加按钮

标签:

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

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