我建立UItableView
靜態cells
,當我試圖運行它沒有什麼是出現在我的模擬器,的UITableView不會出現在模擬器
這裏是我的Interface Builder中的樣子:
這裏在模擬器:
我建立UItableView
靜態cells
,當我試圖運行它沒有什麼是出現在我的模擬器,的UITableView不會出現在模擬器
這裏是我的Interface Builder中的樣子:
這裏在模擬器:
您需要提供段數和行數的返回值。默認情況下它是0
override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
// Return the number of sections.
return 1
}
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// Return the number of rows in the section.
return 3
}
謝謝你工作的人 – Yousef
確保實現代碼如下沒有連接到您的視圖控制器程序上的數據源,使用numberOfCells/numberOfSections/cellForRow方法覆蓋靜態單元格羣體
你給委託和數據源給UIViewController嗎? –
是的,我已經完成了這個 – Yousef
你有沒有使用'objective-c'或swift?你能告訴我你的UITableView'Datasource'和'Delegate'方法。 –