如果在 Swift 3 中未选择 CollectionView 单元格,如何显示警报?

How to show Alert if CollectionView cell is not selected in Swift 3?

我正在开发医生预约应用程序。我有一个集合视图,其中单元格是时隙。用户可以 select 根据他 favour.I 的日期在集合视图下放置一个按钮,然后在单击该按钮后用户移动到下一个 viewController。如果用户没有 select 任何时间段,我想在单击按钮时显示警报。我尝试了很多但没有找到解决方案。提前致谢.... 检查我的视图的屏幕截图。希望有人能帮助我....

进行如下操作:

@IBAction func buttonPressed(_ sender: Any) {
            if timeSlotsCollectionView.indexPathsForSelectedItems == [] {
                let alert = UIAlertController(title: "DID NOT SELECT A TIME SLOT", message: "Please select a time slot!", preferredStyle: UIAlertControllerStyle.alert)
                alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil))
                self.present(alert, animated: true, completion: nil)
            }
}

祝你的应用程序好运