我的 iPhone 应用程序的设计模式是什么
我有一个 iPhone 应用程序,它是一个基于选项卡栏的应用程序。我的应用程序的设计模式是什么?抱歉问一个基本问题,我不知道设计模式。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Tabbar 并不暗示任何设计模式。它只是代表一些数据的 UI 元素。
您的应用程序可以使用多种设计模式。例如,对于数据表示,它可能是 MVC(模型-视图-控制器)模式。
请阅读此链接。正如您所看到的,有大量的模式,并且它们几乎总是混合在您的应用程序中。
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.
设计模式只是解决计算机科学中常见问题的一种常见方法。它通常用于参考面向对象的编程设计模式,例如四人帮所描述的模式。如果不从整体上查看您的代码,我们无法识别您使用的具体设计模式。
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.