在 UML 类图上表示 Objective C 协议
我应该如何在 UML 类图上正确引用协议?
例如,我的 ListViewController
符合 UITableViewDataSource
和 UITableViewDelegate
协议...我应该将 cellForRowAtIndexPath
或 <代码>numberOfRowsInSection 方法? ...在实现它们的 ListViewController
中或类似这样的地方:
<<Protocol>>
UITableViewDataSource
---------------------
---------------------
-numberOfRowsInSection
如果我执行后者,那么 ListViewController
类和协议框之间的关联是什么?我所要展示的只是我如何融入 Cocoa Touch。
谢谢。
How should I correctly reference protocols on a UML class diagram?
For example my ListViewController
conforms to the UITableViewDataSource
and UITableViewDelegate
protocols... where do I put the cellForRowAtIndexPath
or numberOfRowsInSection
methods? ... in ListViewController
where they are implemented or in something like this:
<<Protocol>>
UITableViewDataSource
---------------------
---------------------
-numberOfRowsInSection
If I did the latter what would be the association between the ListViewController
class and the protocol box be? All I have to show is how I hook into Cocoa Touch some how.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
协议在某种程度上相当于 java 中的接口,因此您可以找到 java UML 图并对其进行处理。
另外,来自 http://en.wikipedia.org/wiki/Class_diagram:
因此,如果我没看错的话,
ListViewController
将有一条虚线,其中有一个指向UITableViewDataSource
的未填充箭头。Protocols are sort of equivalent to interfaces in java, so you can find a java UML diagram and work off that.
Also, from http://en.wikipedia.org/wiki/Class_diagram:
So if I'm reading that correctly,
ListViewController
would have a dashed line with an unfilled arrowhead pointing toUITableViewDataSource
.