过滤解析查询的结果

时间:2015-03-15 17:02:16

标签: ios xcode swift parse-platform chat

我正在用解析开发一个聊天应用程序,我有一个群聊聊天选项卡。我想要完成的是当用户注册时他/她可以从“标签”列表中选择,例如“猫”,“狗”和“汽车”。然后,当用户登录组标签时,仅显示与所选标签关联的组聊天。现在我有一个用户可以创建群聊的功能但是如果可能的话我想删除它并使用我上面解释过的想法。

这是我的群组标签的代码:

import UIKit
// Parse loaded from SwiftParseChat-Bridging-Header.h



class GroupsViewController: UITableViewController, UIAlertViewDelegate {



var groups: [PFObject]! = []



override func viewDidLoad() {

    super.viewDidLoad()

}



override func viewDidAppear(animated: Bool) {

    super.viewDidAppear(animated)



    if PFUser.currentUser() != nil {

        self.loadGroups()

    }

    else {

        Utilities.loginUser(self)

    }

}



override func didReceiveMemoryWarning() {

    super.didReceiveMemoryWarning()

    // Dispose of any resources that can be recreated.

}



func loadGroups() {

    var query = PFQuery(className: PF_GROUPS_CLASS_NAME)

    query.findObjectsInBackgroundWithBlock {

        (objects: [AnyObject]!, error: NSError!)  in

        if error == nil {

            self.groups.removeAll()

            self.groups.extend(objects as [PFObject]!)

            self.tableView.reloadData()

        } else {

            ProgressHUD.showError("Network error")

            println(error)

        }

    }

}



@IBAction func newButtonPressed(sender: UIBarButtonItem) {

    self.actionNew()

}



func actionNew() {

    var alert = UIAlertView(title: "Please enter a name for your group", message: "", delegate: self, cancelButtonTitle: "Cancel", otherButtonTitles: "OK")

    alert.alertViewStyle = UIAlertViewStyle.PlainTextInput

    alert.show()

}



func alertView(alertView: UIAlertView, clickedButtonAtIndex buttonIndex: Int) {

    if buttonIndex != alertView.cancelButtonIndex {

        var textField = alertView.textFieldAtIndex(0);

        if let text = textField!.text {

            if countElements(text) > 0 {

                var object = PFObject(className: PF_GROUPS_CLASS_NAME)

                object[PF_GROUPS_NAME] = text

                object.saveInBackgroundWithBlock({ (success: Bool, error: NSError!) -> Void in

                    if success {

                        self.loadGroups()

                    } else {

                        ProgressHUD.showError("Network error")

                        println(error)

                    }

                })

            }

        }

    }

}



// MARK: - TableView Data Source



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

    return 1

}



override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

    return self.groups.count

}



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

    var cell = tableView.dequeueReusableCellWithIdentifier("cell") as UITableViewCell



    var group = self.groups[indexPath.row]

    cell.textLabel?.text = group[PF_GROUPS_NAME] as? String



    var query = PFQuery(className: PF_CHAT_CLASS_NAME)

    query.whereKey(PF_CHAT_GROUPID, equalTo: group.objectId)

    query.orderByDescending(PF_CHAT_CREATEDAT)

    query.limit = 1000

    query.findObjectsInBackgroundWithBlock { (objects: [AnyObject]!, error: NSError!) -> Void in

        if let chat = objects.first as? PFObject {

            let date = NSDate()

            let seconds = date.timeIntervalSinceDate(chat.createdAt)

            let elapsed = Utilities.timeElapsed(seconds);

            let countString = (objects.count > 1) ? "\(objects.count) meddelanden" : "\(objects.count) meddelande"

            cell.detailTextLabel?.text = "\(countString) \(elapsed)"

        } else {

            cell.detailTextLabel?.text = "0 meddelanden"

        }

        cell.detailTextLabel?.textColor = UIColor.lightGrayColor()

    }



    return cell

}



// MARK: - TableView Delegate



override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {

    tableView.deselectRowAtIndexPath(indexPath, animated: true)



    var group = self.groups[indexPath.row]

    let groupId = group.objectId as String



    Messages.createMessageItem(PFUser(), groupId: groupId, description: group[PF_GROUPS_NAME] as String)



    self.performSegueWithIdentifier("groupChatSegue", sender: groupId)

}



override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {

    if segue.identifier == "groupChatSegue" {

        let chatVC = segue.destinationViewController as ChatViewController

        chatVC.hidesBottomBarWhenPushed = true

        let groupId = sender as String

        chatVC.groupId = groupId

    }

}

}

1 个答案:

答案 0 :(得分:0)

听起来你想查询一个类(包含聊天的类),其约束条件是该类的数组列属性(列出每个聊天标记的那个)包含一些与当前用户相关的标记列表。 PFQuery有一个名为whereKey:containsAllObjectsInArray:的方法就是这样做的。

要使其工作,您需要清楚标记列表是标记对象的指针数组,还是标记名称的字符串数组。当然,如果聊天中的标签存储为对象的指针,则第二个参数应该是PFObject的数组,如果它们是字符串,则数组参数必须是NSString的数组。 / p>

与查询的语义无关,但很重要:对cellForRowAtIndexPath:中的任何内容执行无人看守的异步查询都是徒劳的。每当细胞滚动到视图中时调用该方法,这经常任意地发生,并且任意快速地发生。使用另一种方法获取表的数据源,然后在数据到达后重新加载表。

(我认为该帖子已经进行了密切投票,因为它询问了一个具体的问题,然后向读者提供了大量代码,其中大部分都是无关的,让读者找到相关的查询,并且没有显示任何到目前为止已经尝试了什么。如果你能给那些可能回答其他好问题的人提供最大帮助,那么该网站会更好地为你服务。)