-
Cell
单元格上设置分隔符样式(默认单分割线)
// 设为'隐藏'
testCell.SeparatorStyle = .none
-
Cell
单元格的选中样式(默认灰色)
// 设为'隐藏'
testCell.SelectionStyle = .none
- 一个布尔值,用于确定
水平
滚动到达内容末尾时是否总是发生反弹
// 设置仅内容超过屏幕宽度时可滑动,在'UITableView'实例中,设置为'false'
testTableView.alwaysBounceHorizontal = "false"
- 一个布尔值,用于确定
垂直
滚动到达内容末尾时是否总是发生反弹
// 设置仅内容超过屏幕高度时可滑动,在'UITableView'实例中,设置为'false'
testTableView.alwaysBounceVertical = "false"
网友评论