我正在学习使用Swift和Xcode制作IOS程序。我正在读一本书以及观看视频。我遇到了一个问题。我在视图控制器中创建了一个表视图。我知道如何指定行数和文本标签中的内容。但是,我不知道如何删除tableview产生的额外行。我只有4行,但它显示空白的额外行。
这是我的代码:
import UIKit /// imports the UIKit library
class MainScreenViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
@IBOutlet weak var MainScreenTableView: UITableView!
let myMenuOptions = [ "Instructions", "Create", "Open", "Send" ]
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
self.MainScreenTableView.dataSource = self // self refers to the view controler we are in
self.MainScreenTableView.delegate = self /* dataSource means the view control provides the table with information */
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.myMenuOptions.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = UITableViewCell()
cell.textLabel!.text = myMenuOptions[indexPath.row]
return cell
}
谢谢