标签: objective-c cocoa-touch ios interface
我遇到了一个定义如下所示的界面:
@interface UITableViewCell (XXXXXXXX) <MHLazyTableImageCell> @end
有人可以解释括号(XXXXXXX)中的值是什么吗?我还没有看到这种格式的界面。
(XXXXXXX)
答案 0 :(得分:4)
这意味着XXXXXXX是一个类别。它为UITableViewCell类添加或修改功能。您可以阅读有关类别here的内容。
XXXXXXX
UITableViewCell
另外,该类别符合MHLazyTableImageCell协议。
MHLazyTableImageCell