swift 表格视图到网页视图

swift tableview to webview

我对 table 视图有问题,select 将我发送到 Web 视图的单元格,但不是代码,我是开发应用程序的新手 ios。谢谢

var arr: [String]?
    var index : Int = Int()

override func viewDidLoad() {
    super.viewDidLoad()

    arr = ["google","yahoo","Swift"]
    // Do any additional setup after loading the view, typically from a nib.
}


override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
            return 1
        }

    override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return arr!.count
    }

    override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

        //var identifier : NSString = "Cell"

        let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath ) as UITableViewCell

这是行中的问题

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
            return arr!.count
        }

这是控制台消息:

tableView UITableView 0x00007fc504033a00 0x00007fc504033a00 section Int 0 0 self OtraPrueba.ViewController 0x00007fc503548ca0 0x00007fc503548ca0 UIKit.UITableViewController UITableViewController 0x0000000105a4b3d0 0x000000010‌​5a4b3d0 arr [String]? 3 values Some [0] String "google" [1] String "yahoo" [2] String "Swift" index Int 0 0

你确定它崩溃了吗? 您的控制台显示变量的描述并且没有错误消息。 您在代码中放置了断点,它可能不会崩溃。删除(或禁用)断点后尝试 运行。