What _myVar really is in your example is the name ivar that supports your property. By default, when you synthesize a property, the same name is created for you. Thus, you can use your property to set your ivar via setter / getter or _myVar to directly access your variable (bypassing KVC / KVO, of course).
EDIT: From Apple Coding Rules for Cocoa
... In many cases, when you use a declared property, you also synthesize the corresponding instance variable.
Verify that the instance variable name briefly describes the attribute saved. Usually you do not need to access instance variables directly, instead you should use access methods (you access instance variables directly in the init and dealloc methods). To help signal this, prefix instance variable names with an underscore (_) ...
Alladinian
source share