스토리보드에서 스와이프 제스처 추가
3715 단어 XcodeiOSSwiftStoryboard
이번에, 상하 좌우의 스와이프 이벤트를 하면 로그 출력하도록 했습니다.
Swift 코드
ViewController.swift
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@IBAction func leftSwiped() {
NSLog("leftSwiped");
}
@IBAction func rightSwiped() {
NSLog("rightSwiped");
}
@IBAction func upSwiped() {
NSLog("upSwiped");
}
@IBAction func downSwiped() {
NSLog("downSwiped");
}
}
Storyboard에서 Swipe Gesture Recognizer 추가
1. Xcode 오른쪽 하단의 컴포넌트 목록에서 "Swipe Gesture Recognizer"를 ViewController로 드래그
2. 추가한 SwipeGestureRecognizer에 Dirction 설정
3. 추가한 SwipeGestureRecognizer에 Selector 설정
코드를 쓰지 않고 설정할 수 있으므로 코드 부분이 깔끔하네요.
Reference
이 문제에 관하여(스토리보드에서 스와이프 제스처 추가), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/SRAUFactory/items/919e6f229eb8b0df9aba텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)