0
迅速に、私は単一のオプションシートの異なるボタンに異なる色を追加しようとしています。これはサンプルです:私は完了したいUIAlertViewController.actionSheetの各アクションのスウィフト異なる色
let optionMenu = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet)
let reccommendAction = UIAlertAction(title: "Reccommend", style: .default, handler: {
(alert: UIAlertAction!) -> Void in
print("Recommended")
})
let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: {
(alert: UIAlertAction!) -> Void in
print("Cancelled")
})
optionMenu.addAction(reccommendAction)
optionMenu.addAction(cancelAction)
currentVC?.present(optionMenu, animated: true, completion: nil)
タスクはRecommend
ボタンが黄色味の色と赤の色合いの色を持っているCancel
ボタンを持つようにすることです。しかし、私はoptionMenu.view.tintColor
を使用しようとしましたが、それは個々のセルではなくすべてのセルの設定だけを可能にします。