博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ActionSheet的用法
阅读量:5134 次
发布时间:2019-06-13

本文共 641 字,大约阅读时间需要 2 分钟。

#pragma mark - UITableView代理方法

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

    // 1. 取出用户点击的cell

    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

    

    // 2. 判断cell.tag,如果==1,跳转

    if (cell.tag == 1) {

        [selfperformSegueWithIdentifier:@"EditVCardSegue"sender:indexPath];

    } else if (cell.tag == 2) {

        // 让用户选择照片来源

        // * 用相机作为暗示按钮可以获取到更多的真实有效的照片

        UIActionSheet *sheet = [[UIActionSheetalloc] initWithTitle:nildelegate:selfcancelButtonTitle:@"取消"destructiveButtonTitle:@"拍照"otherButtonTitles:@"选择照片", nil];

        

        [sheet showInView:self.view];

    }

}

 

转载于:https://www.cnblogs.com/changxs/p/3454770.html

你可能感兴趣的文章
C#double转化成字符串 保留小数位数, 不以科学计数法的形式出现。
查看>>
牛的障碍Cow Steeplechase
查看>>
Zookeeper选举算法原理
查看>>
3月29日AM
查看>>
利用IP地址查询接口来查询IP归属地
查看>>
HTML元素定义 ID,Class,Style的优先级
查看>>
构造者模式
查看>>
http和https的区别
查看>>
Hbuild在线云ios打包失败,提示BuildConfigure Failed 31013 App Store 图标 未找到 解决方法...
查看>>
找到树中指定id的所有父节点
查看>>
今天新开通了博客
查看>>
AS3优化性能笔记二
查看>>
ElasticSearch(站内搜索)
查看>>
4----COM:a Generative Model for group recommendation(组推荐的一种生成模型)
查看>>
UVA 11137 - Ingenuous Cubrency
查看>>
js阻止事件冒泡的两种方法
查看>>
Java异常抛出
查看>>
74HC164应用
查看>>
变量声明和定义的关系
查看>>
Wpf 之Canvas介绍
查看>>