Native iOS Dev

Eric Goeken

January 2014 / Show-Me Tech

iOS and Objective-C

  • What is Objective-C
  • Basics of an iOS app
  • Next steps

Objective-C

The strangest syntax you will ever see.


    obj.method(arg);
    [obj method:arg];
                    

    obj.method(arg1, arg2);
    [obj methodArg1:arg1 arg2:arg2];
                    

The reason


    rules.score(40,4);
    [rules scoreWithReviewCount:40 averageRating:4];
                    

Basics of an iOS app

Next steps