为啥detailTextLabel 不起作用

为什么detailTextLabel 不起作用要想给tableview加detailTextLabel,initWithStyle必须为:UITableViewCellS

为什么detailTextLabel 不起作用

要想给tableview加detailTextLabel,

initWithStyle必须为:UITableViewCellStyleSubtitle

cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:PersidentsCellIdentifier] autorelease];

?

?

注:PersidentsCellIdentifier为

static NSString *PersidentsCellIdentifier = @"PersidentsCellIdentifier";
?

?