我想用“!”显示一个自定义按钮 作为 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];
其中“cell”被定义为 UITableViewCell 实例。
但是该按钮不会出现在单元格上。我应该怎么做才能显示按钮?