如何将图标添加到操作表中的选项:iOS?
How to add icons to options in action sheets : iOS?
我正在尝试添加 iOS 应用程序的图标 sheet。我看到apple在AppStore的actionsheet中实现了这样的行为,但是没有提供任何回调方法来实现它?
关于如何在 iOS 12 Swift 4.x Xcode10.x 上实施它的任何建议 ??
您可以使用 image
键将图像添加到 UIAlertAction
:
let image = UIImage(named: "IMAGE_NAME")
var alertAction = UIAlertAction(title: "TITLE", style: .default, handler: nil)
alertAction.setValue(image, forKey: "image")
我正在尝试添加 iOS 应用程序的图标 sheet。我看到apple在AppStore的actionsheet中实现了这样的行为,但是没有提供任何回调方法来实现它?
关于如何在 iOS 12 Swift 4.x Xcode10.x 上实施它的任何建议 ??
您可以使用 image
键将图像添加到 UIAlertAction
:
let image = UIImage(named: "IMAGE_NAME")
var alertAction = UIAlertAction(title: "TITLE", style: .default, handler: nil)
alertAction.setValue(image, forKey: "image")