TheLearner
TheLearner

Reputation: 19507

What is the difference between Cocoa Touch and Objective C

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#?

Upvotes: 2

Views: 1067

Answers (1)

Paul R
Paul R

Reputation: 213170

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.

Upvotes: 2

Related Questions