我想填充一个tableView。
我的数据在数组中
var myDataArray = [DataEntry]()
-type 是一个协议,DataEntry
例如:
protocol DataEntry: class {
var idx: Int { get set }
var category: String { get set }
var title: String { get set }
}
我的数据数组的顺序如下:
idx=0:类别=“Section0”/标题=“Row0”
idx=1:类别=“Section0”/标题=“Row1”
idx=2:类别=“Section0”/标题=“Row2”
idx=3:类别 = “Section1”/标题 = “Row0”
idx=4:类别 = “Section1”/标题 = “Row1”
idx=5:类别=“Section2”/标题=“Row0”
idx=6:类别 = “Section2”/标题 = “Row1”
如何从此 dataArray 填充 tableView ?(当然,section和rows需要根据数组的内容看)