异步查询后UITableViewController消失

时间:2016-08-13 22:40:06

标签: ios iphone swift uitableview parse-platform

希望你能帮助我......我一直想把这个问题弄清楚几天。

我正在使用Parse(www.parse.com)作为我的后端,并将其托管在我自己的AWS服务器上。

应用的结构: 在AppDelegate中,如果用户已登录,则显示一个ViewController,用于设置我的SlideMenuControllerSwift(https://github.com/dekatotoro/SlideMenuControllerSwift)和我的TabBarController。 [故事板] [1]

在我的标签栏控制器中,我有一个导航控制器,通向一个UITableViewController,当我点击一行时,它会转移到另一个UITableViewController。

问题http://imgur.com/izdCBgt

1)我点击一行,它对我的​​解析数据库执行异步查询

2)数据填充表格然后消失

3)如果我更改选项卡并返回主选项卡,数据会重新出现

另外

1)我点击一行,它对我的​​解析数据库执行异步查询

2)数据填充表格然后消失

3)如果我回到原来的UITableViewController,它不会正常转换回来,我需要来回更改标签,直到它重新出现

代码:

我使用storyboard segue来查看文档表视图控制器。这是我的DocumentsTableViewController中的相关代码:

class DocumentTableViewController: UITableViewController, UIDocumentInteractionControllerDelegate, UIImagePickerControllerDelegate, UINavigationControllerDelegate, MMCropDelegate {

required init?(coder aDecoder: NSCoder) {
    super.init(coder: aDecoder)
    print("initDocs")
}

var specificDocs=[Document](){
    didSet{
        dispatch_async(dispatch_get_main_queue(), {
            //we might be called from the parse block which executes in seperate thread
            self.loadView()
        })
    }
}


override func viewDidLoad() {
    tableView.dataSource = self
    tableView.delegate = self

    print("we loadeD")
    super.viewDidLoad()

    navigationItem.title = "Job Documents"

    let cameraButton = UIBarButtonItem(image: UIImage(named: "Camera"), style: .Plain, target: self, action: #selector(self.didPressCamera(_:)))
    navigationItem.rightBarButtonItem = cameraButton

    self.queryForTable()

}

override func viewWillAppear(animated: Bool) {
    super.viewWillAppear(animated)
    self.tableView.reloadData()
}


// Define the query that will provide the data for the table view
func queryForTable() {
    // Run a spinner to show a task in progress
    let progressHUD = MBProgressHUD.showHUDAddedTo(self.view, animated: true)
    progressHUD.label.text = "Loading..."

    //2 using those jobActions to find which documents are mine
    let query = PFQuery(className: Document.parseClassName())
    query.whereKey(Document.jobActionCol(), containedIn: jobActions)
    query.includeKey(Document.documentCategoryCol())
//        do {
//            let test = try query.findObjects()
//            self.specificDocs = test as! [Document]
//            progressHUD.hideAnimated(true)
//        } catch {
//            print("error!")
//        }
// FIND WHY THIS DOESNT WORK....WHAT THE F
        query.findObjectsInBackgroundWithBlock {
            (objects: [PFObject]?, error: NSError?) -> Void in
            if error == nil {
                // The find succeeded.
                self.specificDocs = objects as! [Document]
                print("done")
                progressHUD.hideAnimated(true)

            } else {
               // Log details of the failure
                print("Error: \(error!) \(error!.userInfo)")
            }
        }
    }


    // MARK: - Table view data source

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

    }

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

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

        var cell:UITableViewCell? = tableView.dequeueReusableCellWithIdentifier("cellIdentifier")
        if ((cell) == nil){
            cell = UITableViewCell.init(style: .Default, reuseIdentifier: "cellIdentifier")
        }

        cell!.textLabel?.text = specificDocs[indexPath.row].documentCategory!.type!
        print("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!")
//        print(UIApplication.sharedApplication().keyWindow?.performSelector("recursiveDescription"))
        return cell!
    }


    deinit {
        print("docs deinit")
    }
}

1 个答案:

答案 0 :(得分:0)

哦,现在我看到你的代码意图了。但是,你有什么理由这样做吗?直接调用loadView()是不对的。

tableView.dataSource = self
tableView.delegate = self

在viewWillAppear中移到第一位,除了从解析中接收太快以外它将起作用。

  

正常方式如下:

var specificDocs=[Document](){
didSet{
    dispatch_async(dispatch_get_main_queue(), {
        //we might be called from the parse block which executes in seperate thread
        self.loadView()
    })
}
  

self.loadView()到self.tableView.reloadData()。

tableView.dataSource = self
tableView.delegate = self

  

这不需要。

override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
self.tableView.reloadData()}
  

这也不需要。

无论如何,你的代码只会修改调用self.loadView()到self.tableView.reloadData()