Normal casting vs bridge casting in Objective - C Normal casting vs bridge casting in Objective - C objective-c objective-c

Normal casting vs bridge casting in Objective - C


Yes, ARC needs to be given instructions when you cast between toll-free bridged types. In this case __bridge tells ARC to do nothing, so this will behave the same as the previous standard cast.

You can read the Transitioning to ARC Release Notes for more details on the different ways to do bridging casts.