我有一個UITableView
5個不同的部分。對於這些板塊之一,我已經做增加了UIButton
:如何將UIButton作爲一個標題居中在UITableView中的一個部分?
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
if (section == 5) {
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 64)];
UIButton *button1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button1 setTitle:@"Button" forState:UIControlStateNormal];
button1.frame = CGRectMake(8, 8, 96, 44);
[view addSubview:button1];
return view;
}
return nil;
}
,我遇到的問題是這樣的:由於一個部分的標題是默認靠左對齊,按鈕被左對齊,我已經找遍了所有的解決方案,但似乎無法找到一個,你的幫助/建議表示讚賞!