- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
一个类可以在 Objective C 中使用一个类别来扩展,例如:
@interface NSString (CategoryName)
-(NSString *)myFabulousAddition; // a fabulous additional method
@end
/////////////////////////////
@implementation NSString (CategoryName)
-(NSString *)myFabulousAddition {
// do something fabulous...
}
@end
在这个小例子中,我将向 NSString 添加方法 myFabulousAddition
。然后我可以通过 [anNSString myFabulousAddition]
调用它,就像它是 NSString 方法集的一部分一样。很棒而且很有用。
在Apple documents regarding Categories ,文档状态:
There’s no limit to the number of categories that you can add to a class, but each category name must be different, and each should declare and define a different set of methods.
如果你有这样的事情怎么办:
@interface NSString (CategoryName)
-(NSString *)myFabulousAddition; // a fabulous additional method
@end
@interface NSString (ANOTHERCategoryName)
-(NSString *)myFabulousAddition; // a DIFFERENT fabulous additional method
// BUT with same name as the other category
@end
/////////////////////////////
@implementation NSString (CategoryName)
-(NSString *)myFabulousAddition {
// do something fabulous...
}
@end
@implementation NSString (ANOTHERCategoryName)
-(NSString *)myFabulousAddition {
// do something equally fabulous, but DIFFERENT...
}
@end
括号中缺少名称表示该表单是类的扩展,如下所示:
@interface MyObject () // No name -- an extension vs category to MyObject
- (void)setNumber:(NSNumber *)newNumber;
@end
类别名称对编译器或链接器有什么意义吗?无论如何,类别名称是方法签名的一部分还是原始 namespace 的一部分?如果类别名称没有意义,你怎么知道你是否要踩到另一个方法并得到未定义的行为?
最佳答案
避免踩踏方法的方法是在类别方法名称前加上前缀,如下所示:
@interface NSString (MyCompanyCategoryName)
- (NSString *)MYCO_fabulousAddition;
@end
如果您遇到来自不同类别的方法名称的冲突,那么在运行时哪个“获胜”是完全不确定的。
类别的名称几乎完全没有用,除了无名类别(即 ()
)是为类扩展保留的。来自类扩展的方法应该在类的主 @implementation
中实现。
关于objective-c - Objective-C 类别名称有什么作用吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5689088/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!