長押しの命令を書く。
1 2 3 4 5 6 7 8 9 10 |
override func viewDidLoad(){ var longPressGesture:UILongPressGestureRecognizer = UILongPressGestureRecognizer(target:self, action: "handleLongPressGesture:") longPressGesture.minimumPressDuration = 0.5 self.view.addGestureRecognizer(longPressGesture) } func handleLongPressGesture:(sender:UILongPressGestureRecognizer){ // 長押し時の命令を書く } |