Я создал UIAlertController с различными действиями.Вот код:
typealias OptionMenuItem = (title: String, style: UIAlertAction.Style, handler: () -> Void)
@discardableResult func showOptionsAlert(items: [OptionMenuItem]) -> UIAlertController {
let alertController = UIAlertController(title: nil, message: nil,
preferredStyle: UIAlertController.Style.actionSheet)
items.forEach({it in
alertController.addAction(UIAlertAction(title: it.title, style: it.style, handler: {_ in
it.handler()
}))
})
present(alertController, animated: true, completion: nil)
return alertController
}
showOptionsAlert(items: [
("Copy Link", .default, {}),
("Turn On Post Notifications", .default, {}),
("Report", .destructive, {}),
("Mute", .destructive, {}),
("Unfollow", .destructive, {}),
("Cancel", .cancel, {})
])
В результате я получил это
Разделители между элементами оповещения разные.Как сделать их одинаковыми?