Martin Stolz
Martin Stolz
Switches also must have brackets. Why? Consistency and visual separation of code blocks. ``` c switch (value) { case 0: { [self doSomething]; break; } case 1: { [self doSomethingElse];...
The style of private methods is incorrect. Pragma marks should not be used to separate public and private methods but separating logical pieces of code. Also it makes sense to...
_Given_ I want to stop the interactive session _And_ I press CTRL+C _Then_ the interactive session should stop
Update framework to use the new programatic auto layout approach.
See http://www.passwordmeter.com/ and http://phiras.wordpress.com/2007/04/08/password-strength-meter-a-jquery-plugin/ as good examples. And let the user decide what is crucial and what fits the custom rules of the project. Like number of upper case, number...