2015-04-28 91 views
1

我建立UItableView靜態cells,當我試圖運行它沒有什麼是出現在我的模擬器,的UITableView不會出現在模擬器

這裏是我的Interface Builder中的樣子:

enter image description here 這裏在模擬器:

​​

+0

你給委託和數據源給UIViewController嗎? –

+0

是的,我已經完成了這個 – Yousef

+0

你有沒有使用'objective-c'或swift?你能告訴我你的UITableView'Datasource'和'Delegate'方法。 –

回答

1

您需要提供段數和行數的返回值。默認情況下它是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 
} 
+0

謝謝你工作的人 – Yousef

0

確保實現代碼如下沒有連接到您的視圖控制器程序上的數據源,使用numberOfCells/numberOfSections/cellForRow方法覆蓋靜態單元格羣體

相關問題