UITableView
に問題がありますUIViewController
にあります。私の表にはわからない行がいくつか表示されています。それはすべての行を表示する必要があります。UITableView一部の行を表示
class TableViewController: UIViewController,UITableViewDelegate, UITableViewDataSource {
let cellIdentifier = "testCell"
override func viewDidLoad() {
super.viewDidLoad()
}
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int{
return 20
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath) as! TableViewCell
cell.lableName.text = "Hello man"
return cell
}
}
はセルの高さがデフォルトのセルの高さと異なるのですか? –
データソースメソッド 'cellForRowAtIndexPath'にデータを設定していない場合、どのようにしてテーブルビューにデータが表示されますか? – Lion
入力した行数が20であるため、テーブルビューで20行作成する –