I’m looking at the following apple example source code:
/* Cache the formatter. Normally you would use one of the date formatter styles (such as NSDateFormatterShortStyle), but here we want a specific format that excludes seconds. */ static NSDateFormatter *dateFormatter = nil; if (dateFormatter == nil) { dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@'h:mm a']; }
Trying to figure out:
-
Why use the static keyword?
-
How this equates to a cached variable if you set it to nil each time the method is called.
The code is from Example 4 in the Tableview Suite demo
Static variables retain their assigned values over repeated calls to the function. They’re basically like global values that are only "visible" to that function.
The initializer statement is only executed once however.
This code initializes
dateFormattertonilthe first time the function is used. On every subsequent call to the function a check is made against value ofdateFormatter. If it’s not set (which will only be true the first time) a a newdateFormatteris created. If it is set then thestatic dateFormattervariable will be used instead.It’s worth becoming familiar with
staticvariables. They can be very convenient but have downsides too (in this example it’s impossible to release thedateFormatterobject for example).Just a tip: Sometimes it can be educational to place a breakpoint in the code and have a look to see what’s going on. As the complexity of your programs increase this will become an invaluable skill.