Block makes a point of attention

Source: Internet
Author: User

Block makes a point of attention

After iOS launches block, Apple is highly recommended for developers. However, memory problems may occur.

You can add the following macros:

#ifndef weakify#if__has_feature (OBJC_ARC)#defineWeakify (x) \_pragma ("clang Diagnostic Push") _pragma ("clang diagnostic ignored \ "-wshadow\"") autoreleasepool{} __weak __typeof__ (x) __weak_# #x # #__=x; _pragma ("clang Diagnostic Pop")#else#defineWeakify (x) \_pragma ("clang Diagnostic Push") _pragma ("clang diagnostic ignored \ "-wshadow\"") autoreleasepool{} __block __typeof__ (x) __block_# #x # #__=x; _pragma ("clang Diagnostic Pop")#endif#endif#ifndef strongify#if__has_feature (OBJC_ARC)#defineStrongify (x) \_pragma ("clang Diagnostic Push") _pragma ("clang diagnostic ignored \ "-wshadow\"") Try{}@finally{} __typeof__ (x) x =__weak_# #x # #__; _pragma ("clang Diagnostic Pop")#else#defineStrongify (x) \_pragma ("clang Diagnostic Push") _pragma ("clang diagnostic ignored \ "-wshadow\"") Try{}@finally{} __typeof__ (x) x =__block_# #x # #__; _pragma ("clang Diagnostic Pop")#endif#endif

When used:

    @weakify (self);     = ^{        @strongify (self);        NSLog (@ "aviewcontrolleraviewcontroller%@", self);    };

Block makes a point of attention

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.