Iphone custom view

Source: Internet
Author: User

What to do with custom View
1. Initialization:
-For the View created in the program, override initWithFrame initialization.
-For views loaded in nib, override initWithCoder initialization.
-After the nib file is loaded, you can use awakeFromNib to process other initialization operations. AwakeFromNib is executed after initWithCoder.
Note: You must use [super initXXX] to call the initialization function of the parent class.
2. Rewrite the dealloc destructor. Use [super dealloc].
3. Override drawRect to implement painting.
4. Set autoresizingMask to set automatic operations when the View Size changes.
5. For subView
-Create in the initialization function.
-Set autoresizingMask.
-Rewrite layoutSubviews to implement layout.
6. Use addGestureRecognizer to add and override a gesture recognition object
-TouchesBegan
-TouchesMoved
-TouchedEnded
-TouchedCancelled
To process gesture events.
Use MultipleTouchEnable to open multiple gestures.
Use UserInteactiveEnable to enable gesture recognition.
Use BeginIgnoringInteractionEvent and EndIgnoringInteractiveEvent to ignore the current event.
Use hitTest and pointInside to check whether the gesture occurs in the current View.
7. Use DrawRect for printing.



From likendsl's column

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.