- UITableViewStyle 样式
Returns the style of the receiver. (read-only)
Declaration
SWIFT
var style: UITableViewStyle { get }
OBJECTIVE-C
@property(nonatomic, readonly) UITableViewStylestyle
rowHeight//cell行高
The height of each row (table cell) in the receiver.
The style for table cells used as separators.
Declaration
SWIFT
var separatorStyle: UITableViewCellSeparatorStyle
OBJECTIVE-C
@property(nonatomic) UITableViewCellSeparatorStyleseparatorStyle
// 双线?
separatorColor //分割线颜色
separatorEffect//分割效果
The effect applied to table separators.
Declaration
backgroundView //所有cell后面的大背景
separatorInset//ios7以后 设置线是否占满
Specifies the default inset of cell separators.
Declaration
SWIFT
var separatorInset: UIEdgeInsets
tableHeaderView// cell上部视图
- tableFooterView // cell下部视图
sectionHeaderHeight//分区标题区域高度,针对多个分区的
The height of section headers in the receiving table view.
Declaration
SWIFT
var sectionHeaderHeight: CGFloat
The height of section footers in the receiving table view.
Declaration
SWIFT
var sectionFooterHeight: CGFloat
estimatedRowHeight//ios7.0 估算高度
The estimated height of rows in the table view.
Declaration
SWIFT
var estimatedRowHeight: CGFloat
The estimated height of section headers in the table view.
Declaration
SWIFT
var estimatedSectionHeaderHeight: CGFloat
The estimated height of section footers in the table view.
Declaration
SWIFT
var estimatedSectionFooterHeight: CGFloat