↧
Hardwired Strings
With every programming language/development environment I know of, you have to do extra work to make a string localizable. For example, errorMessage = NSLocalizedString(@"This is hard!",@""); not...
View ArticleNSDictionary Copies It’s Keys
An NSDictionary will retain it’s objects, and copy it’s keys. Here are some effects this has had on code I’ve worked on. Sometimes you get the same object you put in, sometimes not. Immutable objects...
View Article