画像をTapするとアクションを起こす機能を作ってみた
画像をタップするとアクションを起こす基本的な実装方法をアウトプットしようと思います。
環境
・Mac Book Pro(macOS:BigSur)
・Xcode(ver:12.5)
実装例
コード例
ViewController.swift
class ViewController: UIViewController {
@IBOutlet weak var imageView: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func tapAction(_ sender: Any) {
let generator = UINotificationFeedbackGenerator()
generator.notificationOccurred(.success)
imageView.image = UIImage(systemName: "person.3")
}
}
注意点
ViewController.swift
class ViewController: UIViewController {
@IBOutlet weak var imageView: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func tapAction(_ sender: Any) {
let generator = UINotificationFeedbackGenerator()
generator.notificationOccurred(.success)
imageView.image = UIImage(systemName: "person.3")
}
}
TapGestureをIBActionで繋ぐだけでは、動作しなくて、
画像の設定の「Interaction」の「User interaction Enabled」にチェックを入れる必要があります。
Author And Source
この問題について(画像をTapするとアクションを起こす機能を作ってみた), 我々は、より多くの情報をここで見つけました https://qiita.com/swiftEnginnerY/items/426f6a0a8ee0c980d295著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .