Learn-Objective-C-in-24-Days-Clone icon indicating copy to clipboard operation
Learn-Objective-C-in-24-Days-Clone copied to clipboard

This project was created with the intention of preservation

Results 4 Learn-Objective-C-in-24-Days-Clone issues
Sort by recently updated
recently updated
newest added

The example uses ```objc scanf("%d", times); ``` which is wrong, since it needs the address of the variable to actually assign it. Changed to: ```objc scanf("%d", &times); ```

lack of semicolon

Tutorials do not take ARC into account and many would not compile in newer xcode without disabling ARC. Not sure how it should be fixed but you asked me to...