作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我更改了自定义 UITableViewCell
部分标题的颜色,当我在 tableView
中滚动时,它改变了它的 alpha,我猜。有些是透明的,有些是纯色的。
怎么了?
// Customize HeaderView of Sections
func tableView(tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
// This changes the header background
view.tintColor = UIColor(hue: 0.13, saturation: 0.13, brightness: 0.13, alpha: 1)
// Gets the header view as a UITableViewHeaderFooterView and changes the text colour
var headerView: UITableViewHeaderFooterView = view as! UITableViewHeaderFooterView
headerView.textLabel.textColor = UIColor.whiteColor()
}
最佳答案
我强烈建议用这种方法配置标题 View :
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView?
除了主要配置外观之外,我会将 willDisplayHeader...
用于其他目的。
关于ios - UITableView 部分标题颜色行为不当,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31609511/
我正在编写一个 native iOS 7 应用程序,需要从 JSON api(由我控制)检索数据。 JSON 输出示例如下: { "id" : "544", "name" : "1900 Green
我是一名优秀的程序员,十分优秀!