1
在我的應用程序中,我有ViewController,它將TableView與靜態單元格放在一起。故事板的外觀喜歡這樣的:TableView與靜態單元格「... dataSource必須從cellForRowAtIndexPath返回一個單元格」錯誤
在.m文件我寫道:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
[self.myTableView cellForRowAtIndexPath:indexPath];
}
但是我收到一個錯誤:dataSource must return a cell from cellForRowAtIndexPath
我做錯了嗎?
我只想讓TabeView看起來像故事板,並且不要以編程方式創建某些東西。我只需要更改labels.text屬性 – daleijn
您不在* static * table視圖中實現cellForRowAtIndexPath或任何數據源方法,請比較上面的「可能的重複」。 –