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

UIActionSheet底部弹出框

时间:2015-11-27 00:40:56      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

<底部弹出框来提示用户信息>
    1.遵循代理方法<UIActionSheetDelete>
    2.调用放法 [UIActionSheet *sheet=[UIActionSheet alloc]initWithTitle:@“通关了!” delegate:self cancelButtonTitle:@“取消” destructiveButtonTitle:@“购买” otherButtonTitles:@“购买1”,@“购买2”,nil]
    [sheet showInView:self.view];

    3.点击第几个按钮根据ButtonIndex 传值  调用代理方法
    - (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
    {    NSLog(@"%d,执行完UIActionSheet的代理方法时调用这个方法",buttonIndex);    }

UIActionSheet底部弹出框

标签:

原文地址:http://www.cnblogs.com/mawenqiangios/p/4999317.html

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