我有PFQueryTableViewController
列出电影。在我的导航栏中,我有一个过滤按钮,当用户按下它时,它会显示UIPopoverPresentationController
。此弹出窗口只显示UITableView中的一些选项。见下图:
目标
当用户在弹出窗口中选择一个选项时,我需要将选项索引传递回主PFQueryTableViewController
,然后相应地更新表。并关闭popover控制器。
我已经知道如何对表进行排序,我只需要知道如何将选定的选项传回,然后如何将其添加到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
}
}
答案 0 :(得分:1)
您可以在此处使用协议/代表。您的popviewcontroller将是tableviewcontroller或将具有tableview。您必须将此控制器称为弹出窗口。现在在didselect上的popOverController中调用委托函数,并根据您的要求将选项select作为字符串/索引传递。此委托方法将在您的viewcontroller中实现,您可以在其中对表进行排序和重新加载。
这是我创建的演示。您可以根据您的要求更新相同内容。
https://github.com/quantumarun/Demos/tree/master/PopOverDemo
在ViewController.swift中检查功能
func sortSelection(selectedItem: Int)
这是在Popover中选择时将调用的委托函数。如果您需要,您也可以传递字符串而不是Int。