• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: ARC + CF types
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ARC + CF types


  • Subject: Re: ARC + CF types
  • From: David Duncan <email@hidden>
  • Date: Mon, 29 Aug 2011 07:28:36 -0700

On Aug 29, 2011, at 7:20 AM, Thomas Davie wrote:

> I'm not really very clear on how ARC and CF types are meant to interact yet, because of that I've managed to create some buggy code, could someone have a quick stare at this and tell me what I've misunderstood that's causing a segfault when adding to the mutable set:


Given "id foo" and "CFTypeRef bar":

// assign bar to foo without making any implicit change to bar – traditional toll free bridging
foo = (__bridge id)bar;

// consume bar to create an ARC managed reference in foo – replaces foo = (id)bar; [foo release];
foo = (__bridge_transfer id)bar;

// retain foo and manage it as a non-ARC reference – replaces bar = (CFTypeRef)[foo retain];
bar = (__bridge_retain CFTypeRef)foo;
--
David Duncan

_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

References: 
 >ARC + CF types (From: Thomas Davie <email@hidden>)

  • Prev by Date: ARC + CF types
  • Next by Date: Re: ARC + CF types
  • Previous by thread: ARC + CF types
  • Next by thread: Re: ARC + CF types
  • Index(es):
    • Date
    • Thread