UITableViewCellStyleValue1 スタイルで UITableViewCell を使用すると、detailTextLabel がかなり長い場合、textLabel.text が切り捨てられます。
static NSString *CellIdentifier = @"Cell";
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier] autorelease];
cell.textLabel.text = @"Publisher";
cell.detailTextLabel.text = @"This Is A Very Long String";
問題は、detailTextLabel の長さに関係なく切り捨てられずに「Publisher」を強制的に表示する方法です。
PS私はこのコミュニティに新しく参加したので、問題をより明確にすることができる画像を投稿できませんでした. そのために残念...