【发布时间】:2015-12-14 04:36:29
【问题描述】:
我想创建一个页面,顶部应该有一个地图,底部应该有 5 行 tableview。所以我创建了 UIViewController 放了我的 Map View 然后放了 TableView。我创建了 myViewController.swift 和 myTableViewCell.swift
但是当我在模拟器上尝试时,tableview 上没有显示数据。只有空单元格。我没有收到错误
这是我的代码。谢谢
import UIKit
import MapKit
class myViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
@IBOutlet weak var mapView: MKMapView!
var labels = ["some arrays"]
var images = ["some image names in an array"]
@IBOutlet weak var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return labels.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("mySegue", forIndexPath: indexPath) as! myTableViewCell
cell.myCellLabel.text = labels[indexPath.row]
cell.myCellImage.image = UIImage(named: images[indexPath.row])
return cell
}
}
【问题讨论】:
标签: ios swift uitableview uiview uiviewcontroller