在我的应用程序中,我有一个表格视图,到目前为止我已经使用故事板进行了管理(我已经通过故事板添加了部分:行:单元格等),我以编程方式所做的唯一更改是将 a 添加UIButton
为节标题通过实现:
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
if (section == 2) {
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 64)];
UIButton *button1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button1 setTitle:@"Hydro Volume" forState:UIControlStateNormal];
button1.frame = CGRectMake(62.5, 5, 205, 44);
[view addSubview:button1];
[button1 addTarget: self
action: @selector(buttonClicked:)
forControlEvents: UIControlEventTouchDown];
return view;
}
return nil;
}
我目前的困境是我必须添加一个包含下标的节标题,即:H2O
我无法直接在情节提要检查器中添加下标,有人可以告诉我这样做的方法是什么吗?
我查看了这个问题,但这并不是我想要的,因为我需要能够将它添加到我的部分标题中。