0

我有一个PFQueryTableViewController列出电影的列表。在我的导航栏中,我有一个过滤器按钮,当用户按下它时,它会显示一个UIPopoverPresentationController. 这个弹出框只是在 UITableView 中显示一些选项。见下图:

在此处输入图像描述

目标

当用户在弹出窗口中选择一个选项时,我需要将选项索引传递回主PFQueryTableViewController目录,然后相应地更新表。并且还要关闭弹出框控制器。

我已经知道如何对表进行排序,我只需要知道如何将所选选项传回,然后如何将其添加到if语句中以过滤我的 Parse 查询。例如,如果用户选择按最高评分过滤,在我的queryForTable()函数中,我将输入如下内容:

if XXXXXXXXXXXX {

query.orderByDescending("highestRated")

}

而且我已经创建了popover VC并且它可以工作。

希望这是有道理的......如果不是,请询问更多信息。我的 popover VC 的代码如下:

class SortByViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

@IBOutlet weak var sortByTableView: UITableView!

var sortByOptions = ["Date added", "Film name", "Our star rating", "Highest rated", "Lowest rated", "Director's name"]

override func viewDidLoad() {
    super.viewDidLoad()

    self.sortByTableView.rowHeight = 44.0

    sortByTableView.tableFooterView = UIView(frame:CGRectZero)

    sortByTableView.backgroundColor = UIColor.clearColor()


}

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

    return sortByOptions.count

}

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

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

    cell.textLabel?.text = self.sortByOptions[indexPath.row]

    let imageName = UIImage(named: sortByOptions[indexPath.row])
    cell.imageView?.image = imageName

    let itemSize:CGSize = CGSizeMake(30, 30)
    UIGraphicsBeginImageContextWithOptions(itemSize, false, UIScreen.mainScreen().scale)
    let imageRect : CGRect = CGRectMake(0, 0, itemSize.width, itemSize.height)
    cell.imageView!.image?.drawInRect(imageRect)
    cell.imageView!.image = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()

    cell.textLabel?.textColor = UIColor(hue: 359/360, saturation: 67/100, brightness: 71/100, alpha: 1)

    cell.backgroundColor = UIColor.clearColor()

    return cell
}

}
4

1 回答 1

1

您可以在此处使用协议/代表。您的 popviewcontroller 将是一个 tableviewcontroller 或将有一个 tableview。您必须将此控制器称为弹出框。现在在 popOverController on didselect 调用委托函数并根据您的要求将选项选择作为字符串/索引传递。此委托方法将在您的视图控制器中实现,您可以在其中对表格进行排序和重新加载。

这是我创建的演示。您可以根据您的要求进行更新。

https://github.com/quantumarun/Demos/tree/master/PopOverDemo

在 ViewController.swift 检查功能

func sortSelection(selectedItem: Int)

这是在 Popover 中选择时将调用的委托函数。如果需要,您也可以传递字符串而不是 Int。

于 2016-03-29T17:47:17.180 回答