My Android Blog

To view my posts on Android you can visit my Android Blog

Search This Blog

Sunday, July 15, 2012

Objective C

As you must be aware by now, if you are interested in developing apps for iOS, the language used is Objective C.


Objective C is C along with many things added to it.

So, to distinguish between what is C and what is added as part of objective C, all the Objective C parts are in square brackets. Even @ signs indicate it is Objective C

Some of the other points to note are:
  1. It provides a Foundation Library: Over 100 files with things to manipulate strings etc.
  2. A White space insensitive language
  3. A case sensitive language
  4. Should compile before running it
  5. Uses LLVM compiler
  6. Main block exists in all apps including iphone, ipad apps
  7. dynamic typing is also supported 
  1. This list might grow as I discover more. 

    The next few postings would be theory - but theory that I usually consider as essential for strong fundamentals before one can start development


No comments:

Post a Comment