I feel it is necessary to make a brief summary of gesture recognition in iOS development. In the previous blog post on iOS development of custom emoji keyboard (component encapsulation and automatic layout), a tap gesture was used, which is to return from the emoji keyboard to the system keyboard when tapping the TextView. The hand in the TextView was added using storyboard. The following will first show how to add gestures to the corresponding controls using storyboard, and then add gestures to our controls in a pure code way. The usage of gestures is relatively simple. Similar to the usage of buttons, it is also a target action callback. Without further ado, let's get to the point of today. There are a total of six gesture recognitions: tap gesture (TapGestureRecognizer), swipe gesture (SwipeGestureRecognizer), long press gesture (LongPressGestureRecognizer), drag gesture (PanGestureRecognizer), pinch gesture (PinchGestureRecognizer), rotation gesture (RotationGestureRecognizer); In fact, these gestures can be fully realized with touch events. Apple encapsulates common touch events into gestures to provide them to users. Readers can use TouchesMoved to write drag gestures, etc. First, use storyboard to add gesture recognition to the control. Of course, you need to take a screenshot when using storyboard. 1. Use storyboard to add gesture recognition. The steps are the same as adding a Button. First, we have to find the corresponding gesture and drag the gesture recognition control to the control where we want to add the gesture. The screenshot is as follows 2. Adding a callback event to the gesture we dragged out is no different from adding a callback event to the Button. Just add the business logic to be implemented in the callback method. The screenshot is as follows: 2. Add gesture recognition with pure code Using storyboard can greatly simplify our operation, but we still need to know how to use pure code, just like editing a web page with Dreamwear (of course, the drag and drop function of storyboard is much more powerful than that of Dreamwear). Using pure code is more flexible and easier to maintain. However, using storyboard can reduce our workload. The two must be used together to greatly improve our development efficiency. Personally, I feel that it is better to use pure code to build the framework (the relationship between controllers) and small things with storyboard. The following shows how to add gesture recognition to our controls using pure code. 1. Adding TapGestureRecognizer The code for initializing TapGestureRecongnizer is as follows:
Add the corresponding business logic in the callback method:
2. Long Press Gesture (LongPressGestureRecognizer) Initialization code:
Add the corresponding method in the corresponding callback method (executed when the gesture starts):
Code description: The common states of gestures are as follows Start: UIGestureRecognizerStateBegan Changed: UIGestureRecognizerStateChanged End: UIGestureRecognizerStateEnded Cancellation: UIGestureRecognizerStateCancelled Failure: UIGestureRecognizerStateFailed 3. Swipe Gesture (SwipeGestureRecognizer) When initializing the swipe gesture, you need to specify the swipe direction, up, down, left, and right. If you want to add multiple swipe directions, you have to add multiple swipe gestures, but the callback method is the same. Add swipe gestures, one to the left and one to the right. The code is as follows:
The callback method is as follows:
4. Pinch Gesture Recognizer Pinch gesture initialization
Method to trigger pinch gesture (zoom in or out):
5. Drag gesture (PanGestureRecognizer) Initialization of drag gesture
The method to be used for drag gestures (getting the moving point through translationInView, similar to the TouchesMoved method)
6. Rotation Gesture (RotationGestureRecognizer) Initialization of the rotation gesture
The method called by the rotation gesture:
Link to this article: http://www.cnblogs.com/ludashi/p/3983008.html |
<<: How do interaction designers understand information architecture?
Dapeng Education-Aesthetic Special Training Cours...
Even if the product's features and experience...
Everyone knows how popular TikTok is today. If yo...
Snapchat is finally going public. The company has...
The App Library feature is a bright new feature o...
Charlie's "Screenwriter Incubation Camp&...
How to formulate a bidding multi-account delivery...
So, how to build a good APP message push mechanis...
There was once an ultimate question popular in th...
Let’s take a look and see if you have ever encoun...
Question: I have opened a new account in Baidu bi...
1. System native UIActivityViewController Pros an...
In the previous project, we mainly talked about s...
It's only two months until summer, and the we...
Chen Kai stock intraday T+0 trading system resour...