如何添加文本到我的字幕?目前我有一個名爲列表的NSArray,如何爲名稱添加字幕?如何將字幕添加到Xcode中的tableview中
lodgeList = [[NSArray alloc]initWithObjects:
@"Abingdon Lodge No. 48",
@"York Lodge No. 12",
@"Alberene Lodge No. 277",
nil];
繼續...
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
cell.textLabel.text =[lodgeList objectAtIndex:indexPath.row];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
小小的幫助將會很好......不只是-1我的問題 – Appsicode
我猜想否定的選票是由於問題的模糊性。也許顯示你已經有的代碼,並且更全面地解釋你想要達到的目標,可能會幫助你獲得更好的迴應。正如所寫的那樣,確實無法分辨出問題所在 - 無論是在tableview設置還是數據本身。 –
我剛剛更新了代碼示例的問題。對不起,關於 – Appsicode