我是编程的新手,并在这方面苦苦挣扎. 如何在UITableView中的选定行中添加自定义视图? 所有其他行不应受到影响.新视图应出现在单击行的位置.视图可以有更大的尺寸. 谢谢. 您可以在
如何在UITableView中的选定行中添加自定义视图?
所有其他行不应受到影响.新视图应出现在单击行的位置.视图可以有更大的尺寸.
谢谢.
- (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]; }