博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 获取cell.accessoryView自定义视图以及点击事件
阅读量:6125 次
发布时间:2019-06-21

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

- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view, typically from a nib.

    _tableView = [[UITableView alloc]initWithFrame:self.view.frame style:UITableViewStyleGrouped];

    [self.view addSubview:_tableView];

    _tableView.dataSource = self;

    _tableView.delegate = self;

    [_tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"];

    

}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

{

    return 3;

}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

{

    switch (section) {

        case 0:

            return 1;

            break;

            case 1:

            return 2;

            break;

            case 2:

            return 3;

        default:

            break;

    }

    return 0;

}

//- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

//{

//    UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 375, 40)];

//    view.backgroundColor = [UIColor cyanColor];

//    return view;

//}

//- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section

//{

//    return 40;

//}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

{

    return 80;

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];

    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

//    cell.accessoryView

    UIButton *button = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, 100, 80)];

    button.backgroundColor = [UIColor redColor];

    cell.accessoryView = button;

    [button addTarget:self action:@selector(surebutton:) forControlEvents:UIControlEventTouchUpInside];

    cell.textLabel.text = @"测试";

    return cell;

}

- (void)surebutton:(UIButton *)sender

{

    UITableViewCell *cell = (UITableViewCell *)sender.superview;

    NSIndexPath *indexpath = [_tableView indexPathForCell:cell];

    NSLog(@"%ld",indexpath.row);

}

 

转载于:https://www.cnblogs.com/tcandpenglei/p/5368626.html

你可能感兴趣的文章
类斐波那契数列的奇妙性质
查看>>
配置设置[Django]引入模版之后报错Requested setting TEMPLATE_DEBUG, but settings are not configured....
查看>>
下一步工作分配
查看>>
Response. AppendHeader使用大全及文件下载.net函数使用注意点(转载)
查看>>
Wait Functions
查看>>
代码描述10313 - Pay the Price
查看>>
jQuery最佳实践
查看>>
centos64i386下apache 403没有权限访问。
查看>>
vb sendmessage 详解1
查看>>
jquery用法大全
查看>>
Groonga 3.0.8 发布,全文搜索引擎
查看>>
PC-BSD 9.2 发布,基于 FreeBSD 9.2
查看>>
网卡驱动程序之框架(一)
查看>>
css斜线
查看>>
Windows phone 8 学习笔记(3) 通信
查看>>
重新想象 Windows 8 Store Apps (18) - 绘图: Shape, Path, Stroke, Brush
查看>>
Revit API找到风管穿过的墙(当前文档和链接文档)
查看>>
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>
Windows 8.1 应用再出发 - 视图状态的更新
查看>>
自己制作交叉编译工具链
查看>>