-1
我試圖從代碼創建一個UITableView
(以前從未這樣做過),它將顯示在UIPopover
中。我想列出目錄的內容(僅限文件名)。這是我的代碼:如何以編程方式配置UITableViewCell?
- (UITableViewCell *)tableView:(UITableView *)theTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellIdentifier = @"FilenameCell";
UITableViewCell *cell = (UITableViewCell *)[theTableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}
cell.textLabel = fileList[0];
return cell;
}
這顯然不工作,我收到一個錯誤:「分配到只讀屬性」。所以,問題是:在這種情況下如何設置單元的數據?
'dequeueReusableCellWithIdentifier的轉換:'的結果是無用的。 – vikingosegundo 2014-09-12 22:37:37