iOS development--a few design methods of single case

Source: Internet
Author: User

A singleton is a design pattern commonly used in iOS development, and is often applied to the transfer of values between controllers. Convenient, efficient and globally versatile.

The design of the singleton model is divided into arc and MRC.

ARC:

Way One

1. Create a class that inherits from NSObject.

2. Declare the class method in the. h file of this class:

+ (instancetype) sharedinstance;

2. The following methods are implemented in the. m file for this class:

static ID instance;

+ (Instancetype) sharedinstance

{

Static dispatch_once_t Oncetoken;

Dispatch_once (&oncetoken, ^{

instance = [[Super alloc] init];

});

return instance;

}

+ (Instancetype) Allocwithzone: (struct _nszone *) zone

{

Static dispatch_once_t Oncetoken;

Dispatch_once (&oncetoken, ^{

instance = [Super Allocwithzone:zone];

});

return instance;

}

Way two:

iOS development--a few design methods of single case

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.