I\'m following the example Navigation View template with core data in the latest iOS SDK.
In the rootViewController.m
file I see this in the @synthesize
Only the first one (on the lhs of the synthesize statement) is synthesized with a getter and setter and becomes the "public" instance variable.
The latter (with the underscore) is still available inside the instance but is not exposed outside the instance. They both reference the same memory address.