0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

画像をTapするとアクションを起こす機能を作ってみた

Posted at

画像をタップするとアクションを起こす基本的な実装方法をアウトプットしようと思います。

環境

・Mac Book Pro(macOS:BigSur)
・Xcode(ver:12.5)

実装例

Unknown-4.gif

コード例

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」にチェックを入れる必要があります。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?