首页 > 代码库 > 设置UITableView背景透明/监听cell左边的删除按钮的点击事件
设置UITableView背景透明/监听cell左边的删除按钮的点击事件
_tableView = [[UITableView alloc] init]; _tableView.delegate = self; _tableView.dataSource = self;
_tableView.frame = CGRectMake(kZero, 66, kScreenW, kScreenH - 66 - 70);
//设置列表为透明背景 UIImage *image = [MusicManager createImageWithColor:[UIColor clearColor]]; _tableView.backgroundView = [[UIImageView alloc] initWithImage:image]; _tableView.backgroundColor = [UIColor clearColor];
#pragma mark 设置UITableView背景的代理方法-(void)tableView:(UITableView*)tableView willDisplayCell:(UITableViewCell*)cell forRowAtIndexPath:(NSIndexPath*)indexPath{ [cell setBackgroundColor:[UIColor clearColor]];}
#pragma mark 点击cell左边的删除按钮时触发- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{ //获取当前处于删除状态的cell UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; //获取cell中所有的子控件 NSArray *labelArray = cell.contentView.subviews; for (UIImageView *view in labelArray) { if (view.tag == 3) {//向右的图片 CGRect temp = view.frame; temp.origin.x = 255; view.frame = temp; } } return @"删除";}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。