温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

点击UITableView的cell展开收缩

发布时间:2020-06-13 08:21:06 来源:网络 阅读:512 作者:森林的守护 栏目:开发技术

首先要理解UITableView代理方法调用的先后顺序。

当初始化UITableView后,代理回调顺序如下

1://返回cell个数

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


2://返回每行的高度

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


3://请求数据元代理为tableView插入需要的cell

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


4://监听点击的cell

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


需要声明一个全局BOOL变量isOpen,记录当前cell的状态,声明一个NSInterge类型selectedIndex,记录选择的cell的row。


在heightForRowAtIndexPath代理里面实现//选中状态返回的高度


if (indexPath.row == selectedIndex.row && selectedIndex != nil ) {

if (isOpen == YES) {

//cell上的label高度自适应

CGSize size = [textStr sizeWithFont:[UIFont systemFontOfSize:14] constrainedToSize:CGSizeMake(290, 1000) lineBreakMode:NSLineBreakByWordWrapping];

CGFloat f = size.height;

if (indexPath.row == [self.dataArr count]-1){

return 153.8+(f - 21);

}

return 155+(f - 21);

}else{

return 67;

}

}

同样在- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath里实现一样的条件

if (indexPath.row == selectedIndex.row && selectedIndex != nil) {

//如果是展开

if (isOpen == YES) {

//xxxxxx

}else{

//收起

}

//不是自身

} else {

}

当点击时候在- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

//将索引加到数组中

NSArray *indexPaths = [NSArray arrayWithObject:indexPath];

//判断选中不同row状态时候

// if (self.selectedIndex != nil && indexPath.row != selectedIndex.row) {

if (self.selectedIndex != nil && indexPath.row == selectedIndex.row) {

//将选中的和所有索引都加进数组中

// indexPaths = [NSArray arrayWithObjects:indexPath,selectedIndex, nil];

isOpen = !isOpen;

}else if (self.selectedIndex != nil && indexPath.row != selectedIndex.row) {

indexPaths = [NSArray arrayWithObjects:indexPath,selectedIndex, nil];

isOpen = YES;

}

//记下选中的索引

self.selectedIndex = indexPath;

//刷新

[tableView reloadRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationFade];

}

经过不断调试,终于实现了点击任意一个cell展开收缩效果


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI