Swift程序在Xcode上崩溃

时间:2015-09-05 17:58:26

标签: ios xcode swift

我正在尝试使用iOS模拟器在swift中运行一个简单的Table View应用程序。 但是一旦模拟器启动,应用程序就会崩溃。

这是我的代码

import UIKit

class ViewController: UIViewController, UITableViewDataSource,UITableViewDelegate {

    var restaurantNames = ["Cafe Deaden", "Home 1", "Teakha", "cafe Loisal","petite Oyster","For Kee Restaurant","pos Atelier","Bourke Street Bakery", "Haigh's Chocolate"]

    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        // Return the number of rows in the section.
        return restaurantNames.count
    }

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) ->
            UITableViewCell {
            let cellIdentifier = "Cell"
            let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath:
            indexPath) as UITableViewCell
            // Configure the cell...
            cell.textLabel!.text = restaurantNames[indexPath.row]
            return cell
    }

}

它说var restaurantNames中的线程1断点1.5。 我不知道从哪里开始排除故障。任何帮助都会很棒

谢谢和干杯

1 个答案:

答案 0 :(得分:2)

这不是崩溃,你只有一个断点。

转到调试 - >停用断点

以下是关于断点的一些Apple文档

https://developer.apple.com/library/ios/recipes/xcode_help-source_editor/chapters/Creating,Disabling,andDeletingBreakpoints.html