0
我想在UIAlertbox中添加圖像,以便添加以下代碼。
如何在Swift 3中將圖像添加到UIAlertbox中?
let alertController = UIAlertController(title: "Gender", message: "" , preferredStyle: .alert)
// Create the actions
let okAction = UIAlertAction(title: "Female", style: UIAlertActionStyle.default) {
UIAlertAction in
// exit(0)
debugPrint("Press OK")
}
let cancelAction = UIAlertAction(title: "Male", style: UIAlertActionStyle.cancel) {
UIAlertAction in
}
// Add the actions
okAction.setValue(#imageLiteral(resourceName: "female_image"), forKey: "image")
cancelAction.setValue(#imageLiteral(resourceName: "male_image"), forKey: "image")
alertController.addAction(okAction)
alertController.addAction(cancelAction)
當我運行應用程序,只有一個形象出現。這有什麼問題?
請大家幫幫我嗎?
你好兄弟@seggy,你的代碼工作!非常感謝。但是,我想編輯圖像大小。所以,我添加了這些代碼。讓femaleimgView = UIImageView(frame:CGRect(x:10,y:10,width:30,height:30))和femaleimgView.image = femaleimage。 Action1.setValue(femaleimgView,forKey:「image」)。當我添加這些代碼時,我得到了錯誤。 :( –
讓我檢查.... – seggy
是否對你有用? – seggy