我有一个tableview
在 tableview 单元格内。我需要该子表视图“cellForRowAtIndexPath”方法中的主表视图索引路径。我被困在这一点上。我的数据源和委托方法在同一个类中。
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// Configure the cell...
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil && [tableView tag] == 200) {
//main tableview
}
else if(cell == nil && tableView.tag == 106)
{
//sub tableview
here I need the index path of main tableview
}
}
如何获取主表视图的索引路径?