我有以下代码将 a 括UITableView
在 aUITableCell
中,所以基本上它是表中的表。这在内部iOS6
和下方都可以正常工作,但在iOS7
我无法滚动辅助视图或按下它。
基本上它按照下面的代码显示很好,但所有触摸都发送到主表,而不是单元格内的表。
以前它允许两者滚动。
这是加载第二个表的代码。tableViewCellWithTableView 类只是一个表格单元类,包含didselectrowatindex
第二个表的路径等。
[[NSBundle mainBundle] loadNibNamed:@"TableViewCell" owner:self options:nil];
tableViewCellWithTableView.data = myData;
tableViewCellWithTableView.backgroundColor = [UIColor clearColor];
[tableViewCellWithTableView setBackgroundView: nil];
tableViewCellWithTableView.tableViewInsideCell.allowsSelection = YES;
tableViewCellWithTableView.tableViewInsideCell.separatorStyle = UITableViewCellSeparatorStyleNone;
tableViewCellWithTableView.tableViewInsideCell.separatorColor=[UIColor clearColor];
[cell.contentView addSubview:tableViewCellWithTableView];
[cell setNeedsDisplay];