在iOS应用中制作选项/设置视图的正确方法是什么:
UITableView
或UICollectionView
我需要的是加快该类UI的视图创建。
答案 0 :(得分:0)
您可以UIAlertViewController使用.actionSheet
样式。
示例:
let alertController = UIAlertController(title: nil, message: "Action for location", preferredStyle: .actionSheet)
alertController.addAction(
UIAlertAction(title: "One", style: .default) { action in
// option clicked
})
//add more actions
present(alertController, animated: true, completion: nil)
<强>外观:强>