0

我在单个 tableview 上使用两个 tableview 单元格,如 dis...在此处输入图像描述

当我在两个单元格上放置子视图时,它显示 Outlets 无法连接到 uitableview 中的重复内容

4

1 回答 1

0

You can access the views with the help "tag". First set tag to the required view then access it as follows,

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"tCell"];
    //I have set CollectionView tag to 100 and Label tag to 50
    UICollectionView *collect = (UICollectionView *) [cell viewWithTag:100]; //if the view is CollectionView
    UILabel *lbl = (UILabel *) [cell viewWithTag:50]; //if it is a UILabel
    return cell;
}
于 2016-01-06T10:10:53.540 回答