↧
How To Make NSLocalizedString Fun To Use
To localize apps (which means: to make them work in other languages) you need to avoid using plain @”strings” and instead use the one of the tedious functions NSLocalizedString,...
View ArticleHow to Keep Your Protocols Private
Don’t you just hate when a small change in the innards of your view controller forces you to change its header file just to conform to a delegate protocol? For example, adding emailing functionality...
View ArticleThe Three Underscores Idiom
#define ___ // defines three underscores as nothing This is something I learned on my first programming job (eons ago…) and found useful but underused. Useful for what? To solve the persistent tension...
View Article