在iOS应用中制作选项/设置视图的正确方法是什么?

时间:2017-03-02 10:05:43

标签: ios swift uitableview uicollectionview comparison

在iOS应用中制作选项/设置视图的正确方法是什么:

  1. 使用UITableViewUICollectionView
  2. 实现静态表示,绘制单元格,分隔符,自定义句柄水龙头等。
  3. 你的方式?
  4. 我需要的是加快该类UI的视图创建。

1 个答案:

答案 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)

<强>外观:

enter image description here