当前位置 : 主页 > 手机开发 > ios >

ios – 如何在UITableView的选定行中添加自定义视图?

来源:互联网 收集:自由互联 发布时间:2021-06-11
我是编程的新手,并在这方面苦苦挣扎. 如何在UITableView中的选定行中添加自定义视图? 所有其他行不应受到影响.新视图应出现在单击行的位置.视图可以有更大的尺寸. 谢谢. 您可以在
我是编程的新手,并在这方面苦苦挣扎.
如何在UITableView中的选定行中添加自定义视图?

所有其他行不应受到影响.新视图应出现在单击行的位置.视图可以有更大的尺寸.
谢谢.

您可以在rowDidSelect Delegate方法中添加新视图,

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

UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

UIView *myView = [[UIView alloc] initWithFrame:CGRectMake(10.0f, 10.0f, 100.0f, 30.0f)];
[myView setTag:-1];

[cell addSubview:myView];

}

同样实现DidDeselectRowatindexpath

- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {

UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

UIView *myView = [cell viewWithTag:-1];

[myView removeFromSuperview];
}
网友评论