thndrkiss
thndrkiss

Reputation: 4595

what is my iphone app's design pattern

I have an iphone app which is a tabbar based application. What is the design pattern of my app. Sorry for asking a fundamental question, i am not aware of design pattern.

Upvotes: 0

Views: 274

Answers (2)

Jon Purdy
Jon Purdy

Reputation: 55019

A design pattern is just a commonly found approach to commonly occurring problems in computer science. It's usually used in reference to object-oriented programming design patterns such as those described by the Gang of Four. We could not identify the specific design patterns you used without looking at your code as a whole.

Upvotes: 0

Max
Max

Reputation: 16719

Tabbar doesn't imply any design pattern. It is just UI element that represent some data. Your app can use several design patterns. For example for data representation it is probably MVC (model-view-controller) pattern.

Read this link. As you can see there are tons of patterns and they are almost always mixed in your app.

Upvotes: 1

Related Questions