FUITableItem
public protocol FUITableItem
A protocol defines style of a FUITableItem.
-
Returns the
DataItemTypeenum value for the item.Declaration
Swift
var type: FUIDataItemType { get } -
Determines whether the cell is read-only or not for inline editing mode.
nilmeans it isfalse. A cell’sisReadonlyis determined by the value of itself, the row, and the column. If only one of these three value is set then that value is used. If two or three values are set, then the higher priority of value is used. The order of priority from high to low is: cell, row, and column.Declaration
Swift
var isReadonly: Bool? { get set }