如何快速创建自定义操作表

时间:2019-02-15 21:44:31

标签: ios uitableview cocoa-touch uiactionsheet

我正在尝试创建类似于Reddit App的操作表

enter image description here

但是我在UIAlertController中发现实现此目标的局限性。 setValue图像不是我想要的,因为它可以是动态的。

let alert = UIAlertController(title: "Title", message: "", preferredStyle: .actionSheet) let filter1 = UIAlertAction(title: "filter", style: .default , handler:nil) let filterImage = UIImage(named: "filter-globe") filter1.setValue(filterImage, forKey: "image") alert.addAction(filter1)

有什么建议可以实现?

建议将单独的ViewControllerTableView用于操作表?

此线程中建议使用setValue或静态视图的任何替代方法 UIAlertController and UIAlertControllerStyleActionSheet customization

0 个答案:

没有答案