0
UIAlertboxにImageを追加したいので、次のコードを追加します。
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)
私はアプリを実行すると、1つの画像のみが表示されます。これには何が問題なのですか?
誰か助けてください?
こんにちは仲間の@seggyで、あなたのコードが動作します!おかげで多くの仲間。しかし、私はイメージのサイズを編集したいと思います。だから、私はこのコードを追加しました。 femaleimgView = UIImageView(フレーム:CGRect(x:10、y:10、width:30、height:30))とfemaleimgView.image = femaleimageにします。 Action1.setValue(femaleimgView、forKey: "image")。このコードを追加すると、エラーが発生します。 : –
私にチェックをさせてください.... – seggy
これはあなたにとって便利ですか? – seggy