カスタマイズしたボタンを「!」で表示したい UITableView セル内のテキストとして。コードは次のようになります。
UIButton *informationBtn = [UIButton buttonWithType:UIButtonTypeCustom];
[informationBtn setFrame:CGRectMake(10, 5, 55, 55)];
[informationBtn setTitle:@"!" forState:UIControlStateNormal];
[informationBtn addTarget:self action:@selector(popUpWindowWithMessage:) forControlEvents:UIControlEventTouchUpInside];
[cell.contentView addSubview:informationBtn];
ここで、「セル」は UITableViewCell インスタンスとして定義されます。
しかし、ボタンはセルに表示されません。ボタンを表示するにはどうすればよいですか?