我有一个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
}
}