Forrest
Forrest

Reputation: 127873

What are common design patterns in Cocoa Touch?

In Java community, design pattern is very common term.

In Object C and Cocoa touch world, there are also some design patterns, such as MVC, target-action, delegate, KVO etc.

The purpose question here is to hear more professional experience from guru. After all, some patterns are common used in iOS development. Just like some are very common in J2EE world.

So question maybe how many common patterns in iOS development field ? Let me put some here

Upvotes: 10

Views: 10941

Answers (3)

Bob Vork
Bob Vork

Reputation: 2947

The Cocoa Fundamentals Guide has a section on a some design patterns: http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/CocoaFundamentals/CocoaDesignPatterns/CocoaDesignPatterns.html%23//apple_ref/doc/uid/TP40002974-CH6-SW6

I don't believe you need access to the Apple Dev Center to view that, but I could be wrong.

Upvotes: 7

Related Questions