模型对象。查看对象

时间:2013-02-19 09:28:33

标签: objective-c ios6

我目前是一名大学生,拥有近2年的C ++编程经验,对Objective-c有一个普遍的疑问。我对Objective-C和Xcode提供的用户界面相当新。我目前正在阅读“iOS编程:大书呆子牧场指南”一书。我的问题是......

在objective-c中,视图对象和模型对象之间有什么区别?   - 实施方面,以及其他任何方面。

任何意见都很棒!!!

2 个答案:

答案 0 :(得分:3)

视图和模型对象是模型 - 视图 - 控制器模式的一部分:

- View objects provide methods for displaying data and expose some generic interfaces. 
- Model objects represent the data and provide some model-specific interfaces. 
- Controllers join the two together.

看一下这篇文章:http://www.informit.com/articles/article.aspx?p=1566875&seqNum=4

答案 1 :(得分:1)