zoukankan      html  css  js  c++  java
  • Objective-C 学习笔记<二>

    使用ARC能帮我们减轻不少内存管理方面的负担,尤其是对用惯了Java的程序员来说。

    最近,在做获取本地通讯录时,遇到CFObject和NSObject转换的问题,由于ARC不能管理Core Foundation Object的生命周期,所以在Core Foundation和ARC之间,我们需要使用到__bridge,__bridge_retained和__bridge_transfer三个转换关键字。

    在苹果官方文档,我们找到了:

    If you cast between Objective-C and Core Foundation-style objects, you need to tell the compiler about the ownership semantics of the object using either a cast (defined in objc/runtime.h) or a Core Foundation-style macro (defined in NSObject.h):

    • __bridge transfers a pointer between Objective-C and Core Foundation with no transfer of ownership.

    • __bridge_retained or CFBridgingRetain casts an Objective-C pointer to a Core Foundation pointer and also transfers ownership to you.

      You are responsible for calling CFRelease or a related function to relinquish ownership of the object.

    • __bridge_transfer or CFBridgingRelease moves a non-Objective-C pointer to Objective-C and also transfers ownership to ARC.

      ARC is responsible for relinquishing ownership of the object.

    __bridge只做类型转换,但是不修改对象(内存)管理权;

    __bridge_retained(也可以使用CFBridgingRetain)将Objective-C的对象转换为Core Foundation的对象,同时将对象(内存)的管理权交给我们,后续需要使用CFRelease或者相关方法来释放对象;

    __bridge_transfer(也可以使用CFBridgingRelease)将Core Foundation的对象转换为Objective-C的对象,同时将对象(内存)的管理权交给ARC。

    例如:

    - (void)logFirstNameOfPerson:(ABRecordRef)person {
     
        NSString *name = (NSString *)ABRecordCopyValue(person, kABPersonFirstNameProperty);
        NSLog(@"Person's first name: %@", name);
        [name release];
    }

    我们可以做这样的修改:

    - (void)logFirstNameOfPerson:(ABRecordRef)person {
     
        NSString *name = (NSString *)CFBridgingRelease(ABRecordCopyValue(person, kABPersonFirstNameProperty));
        NSLog(@"Person's first name: %@", name);
    }

  • 相关阅读:
    2018-2019-20175307实验一《Java开发环境的熟悉》实验报告
    20175307《Java程序设计》第5周学习总结
    团队作业第二次——团队Github实战训练
    团队作业第一次—团队展示和项目展示
    第01组 团队Git现场编程实战
    2019 SDN上机第1次作业
    第01组 团队项目-需求分析报告
    团队项目-选题报告
    第二次结对编程作业
    第1组 团队展示
  • 原文地址:https://www.cnblogs.com/WongSuechang/p/4031635.html
Copyright © 2011-2022 走看看