应用程序在重新加载tabledata时崩溃

时间:2016-03-03 10:51:29

标签: ios swift uitableview tableview ios9

我正在制作具有tableviw的应用程序,当第一次api调用表显示数据时,但是第二次打开滑出菜单并单击按钮api再次调用并且它在线上自动崩溃self.tableView.reloadData() 。 这是我在MainViewController中的代码

 func web()
{
    let url = "http://\(urlString)\(slug)"
    print(url)
    print(slug)
    request(.GET, url, parameters: nil, encoding: .JSON).responseJSON { (response:Response<AnyObject, NSError>) -> Void in
        if (response.result.value != nil)
        {
            print(response.result.value)
            self.arraypost.removeAllObjects()
            print(self.arraypost)
            self.arraypost = (response.result.value)?.valueForKey("posts") as! NSMutableArray
            print(self.arraypost)

            dispatch_async(dispatch_get_main_queue(), {() -> Void in
                self.tableView.reloadData()
            })


        }
    }
}

这是RightViewController中的mycode

@IBAction func btnmotogp(sender: AnyObject) {
    slug = motogp
   MainViewController().web()

    self.slideMenuController()?.closeRight()


}

只是陷入了这个问题,浪费了太多时间。

这是tableview的代码

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

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell : mainviewcell = tableView.dequeueReusableCellWithIdentifier("mainviewcell") as! mainviewcell
    let dic : NSDictionary = arraypost.objectAtIndex(indexPath.row) as! NSDictionary
    cell.lbldate.text = dic["date"] as? String
    cell.lblsummary.text = dic["excerpt"] as? String
    cell.lbltitle.text = dic["title"] as? String

    let myarray : NSMutableArray = (dic["attachments"] as? NSMutableArray)!
    print(myarray)
    let dic1 : NSDictionary = myarray.objectAtIndex(0) as! NSDictionary
    print(dic1)
    var newimage : String = ""


    newimage = dic1["url"] as! String
    print(newimage)
    if (newimage.characters.count != 0)
    {
        ImageLoader.sharedLoader.imageForUrl(newimage) { (images, url) -> () in

            if (images != nil)
            {
                cell.image1.image = images!
            }

        }
    }


    return cell
}

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    let storyboard = UIStoryboard(name: "SubContentsViewController", bundle: nil)
    let subContentsVC = storyboard.instantiateViewControllerWithIdentifier("SubContentsViewController") as! SubContentsViewController
    self.navigationController?.pushViewController(subContentsVC, animated: true)
}

1 个答案:

答案 0 :(得分:0)

有点难以找出你使用它的位置和方式,但我的猜测是,当你调用MainViewController().web()时,MainViewController的视图不在视图层次结构中,因此tableView既不是。这提供了我们在调用表重新加载时的情况,但它没有实例化,因此它崩溃了。确保正确添加视图控制器。

如果您可以关心块可以创建的保留周期,那也很好。)