views:

24

answers:

1

The two terms seems to be used inter changeably.

Is my understanding correct that Cocoa Touch refers to the framework that handles touch whereas Objective-C is just the syntax and language used to interact with this framework?

Much like WPF and C#?

A: 

Yes, Objective-C is just a platform-agnostic programming language, whereas Cocoa Touch is Apple's proprietary framework for writing iPhone/iPad apps, and this happens to be written in Objective C.

Paul R