Thursday 3 August 2017

Longpress event in swift 3



override func viewDidLoad() {
        super.viewDidLoad() 
var longPressGesture : UILongPressGestureRecognizer!
 longPressGesture = UILongPressGestureRecognizer(target: self, action: #selector(MainView.handleLongGesture))
        self.view?.addGestureRecognizer(longPressGesture)

  }


    func handleLongGesture() {
        
        print("long press")
       // do Actions 
        }
    }

No comments:

Post a Comment

Remove bottom line in navigation bar

navigationController ?. navigationBar . setBackgroundImage ( UIImage (), for: . any , barMetrics: . default )          navigat...