I’m using Xcode 4.5.2 to practice iOS programming. My app seems to compile just fine, but when I do Product -> Analyze I get the following messages that are better illustrated in a

I’d appreciate if someone could explain this to me?
PS. I kinda understand what most that does, except the word __bridge which was suggested by a compiler and I agreed to add it.
You should use
__bridge_transfer, not__bridge. You want to transfer ownership to ARC, so it will clean it up for you. Failure to do that will result in a leak.See the discussion of toll-free bridging in the Transitioning to ARC Release Notes.
Per the WWDC 2012 notes, Apple actually suggests
CFBridgingRelease. Thus: