swview tableview到webview

时间:2015-03-29 19:45:56

标签: ios uitableview webview xcode6

我有一个表视图问题,选择一个将我发送到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个值[0] String" google" [1] String" yahoo" [2]字符串"斯威夫特" index Int 0 0

1 个答案:

答案 0 :(得分:1)

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