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

UIActionSheet

时间:2015-05-13 19:08:27      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

    UIActionSheet *sheet = [[UIActionSheet alloc] initWithTitle:@"打开图片" delegate:self cancelButtonTitle:@"关闭"destructiveButtonTitle:nil otherButtonTitles:@"相册", @"相机", nil];

    

    //cancelButtonTitle  destructiveButtonTitle是系统自动的两项。

    //otherButtonTitles是自己定义的项,注意,最后一个参数要是nil。

    

    sheet.actionSheetStyle =UIActionSheetStyleBlackOpaque;//UIActionSheetStyleBlackTranslucentactionsheet的样式,枚举值;

    

    [sheet showInView:self.view];//在当前view显示Action sheet

UIActionSheet

标签:

原文地址:http://www.cnblogs.com/tian-sun/p/4500904.html

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