Changes

Objective-C Variable Scope and Storage Class

191 bytes added, 13:11, 20 October 2009
no edit summary
== Function Scope ==
Objective-C code is typically structured into a number of classes and code units called ''functions'' (for more details on functions see the chapter entitled [[An Overview of Objective-C Functions]]). In terms of variable scope, functions are really little more than statement blocks in that they are encapsulated in braces and variables declared within those braces are local to that block.