0
我已經在collectionviewcell內部放置一個uitableview,並在collectionviewcell類中編碼如下。但數據源和委託方法沒有被調用可以幫助我解決問題TableViewDatasource和委託不調用時,tableview裏面collectionView單元格
- (id)initWithCoder:(NSCoder *)aDecoder {
if (self = [super initWithCoder:aDecoder]) {
arrayMenuAlerts=[NSMutableArray arrayWithObjects:@"Suri",@"John",@"Phillip",@"Sachin", nil];
[self.contentView addSubview:tableView];
tableView.dataSource=self;
tableView.delegate=self;
}
return self;
}
- (void)awakeFromNib {
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"];
tableView.dataSource=self;
tableView.delegate=self;
}
你有沒有設置datasource和委託方法的collectionview? –
'tableView'是一個IBOutlet? – Nishant
是tableview是一個ib插座,我已經設置datasource,代表收集view.Tableview進入collectionview cell.But沒有數據從數據源返回 –