How to test iOS apps? What frameworks, libraries to use to write automated tests for iOS apps? Where to start and what is current recommended approach for testing on iOS.
Category Archives: Objective-c
Objective-C Gets Blocks!
June 28, 2010 – 8:51 am
New to Objective-C is the block syntax. A block is a section of code that is grouped together and designed to be treated like one statement. Blocks also package up the lexical scope of variables and functions within its environment. Blocks are found in many languages including, but not limited to, Ruby, Javascript and Lisp. [...]