TablesDataSource
public protocol TablesDataSource
A protocol that helps you communicate and interact with the values in Tables
-
Get the value of a cell at a specific address
Declaration
Swift
func valueOfCell(x: Int, y: Int) -> CellValueParameters
xThe x coordinate of the cell. For example, when the parser sees
B4, it will call this function withx = 1asBis the second letter in the alphabet and we start from 0yThe x coordinate of the cell. For example, when the parser sees
B4, it will call this function withy = 3as we start from 0. -
Updates the value of the cell at a specific address
Declaration
Swift
func updateCell(content: CellValue, x: Int, y: Int)Parameters
contentThe content of the updated cell.
xThe x coordinate of the cell. For example, when we want to update
B4, it will call this function withx = 1asBis the second letter in the alphabet and we start from 0yThe x coordinate of the cell. For example, when we want to update
B4, it will call this function withy = 3as we start from 0.
View on GitHub
TablesDataSource Protocol Reference