1

我在静态分组单元格中放置了一个 UIButton 并试图使其适合单元格边框,但得到这种双线:

在此处输入图像描述

我尝试更改分隔符样式,但没有帮助。有没有办法使按钮的边框线不可见?

提前致谢。

4

2 回答 2

3

从设计的角度来看,最好将按钮添加为表格的页脚视图,而不是嵌入到单元格中。看看 iPhone 上的日历应用程序。当您编辑现有事件时,他们会在表格底部添加一个用于删除事件的按钮。他们的按钮比简单的圆形矩形按钮更漂亮,但这也很简单。

将您的登录按钮嵌入到一个泛型中UIView并将其添加如下:

UIView *footerView = [[UIView alloc] initWithFrame:...];
UIButton *logInButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
// do button set up here, including sizing and centering, and add to footer view
[footerView addSubview:logInButton];

self.tableView.tableFooterView = footerView;
[footerView release];
于 2012-06-29T19:41:30.840 回答
2

将按钮类型更改为自定义,它将摆脱按钮周围的圆角矩形。

于 2012-06-29T21:25:16.380 回答