-1
在這裏,我會告訴你的代碼片段,我使用:爲什麼detailTextLabel不可見
-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *[email protected]"system";
UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:tableIdentifier];
if (cell==nil) {
cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:tableIdentifier];
}
cell.textLabel.text=[peoples objectAtIndex:indexPath.row];
cell.textLabel.textColor=[UIColor whiteColor];
cell.detailTextLabel.text=[location objectAtIndex:indexPath.row];
cell.detailTextLabel.textColor=[UIColor whiteColor];
}
你設定的細胞類型UITableViewCellStyleSubtitle? –