在观看了很多关于如何在youtube上制作好看的桌面视图的教程之后,我无法理解为什么我的桌面视图在我运行应用程序时的样子。它可能是故事板上的东西吗?
这是我的代码
let opskrifterArray = ["Hello world", "Hello world", "Hello world", "Hello world"]
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell") as UITableViewCell!
let textlabeltwo = cell.viewWithTag(1) as! UILabel
textlabeltwo.text = opskrifterArray[indexPath.row]
return cell
}
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.opskrifterArray.count
}
答案 0 :(得分:0)
我认为你的标签是冲突的,标签必须是唯一的
答案 1 :(得分:0)
分隔符尺寸太小,无法在缩放模拟器内显示。尝试按⌘ + 1 以真实分辨率查看它。