XCode中Categories的类出现无法识别函数的问题的解决办法

今天在工程中加入日历控件,使用一个开源的库,Kal。

将kal库加入已有工程过程中出现一个小插曲,kal工程类目录如果和工程类文件同一级的话会出现包含的头文件无法找到的问题,估计是工程无法定位外部工程在.xcodeproj下一级的目录。将kal类文件夹放在.xcodeproj文件同一级或者上一级,在头文件路径中设置好查找路径就没有问题。

下面说回主题,日历视图添加到指定为止后,调用如下代码定位到当前日期:

- (void)showAndSelectToday
{
    [kalVC showAndSelectDate:[NSDate date]];
}

上面函数进一步调用以下函数:

- (void)moveToMonthForDate:(NSDate *)date
{
  self.baseDate = [date cc_dateByMovingToFirstDayOfTheMonth];
  [self recalculateVisibleDays];
}

这时候问题出现了,运行时候报错 :-[__NSCFDate cc_dateByMovingToFirstDayOfTheMonth]: unrecognized selector sent to...

NSDate是已经categories过了的,定义如下:

@interface NSDate (KalAdditions)
问题就出现在这里了,为什么没调用已经categories过的类,而调用了最原始的类?对比了例子工程,所有包含文件,链接文件等都一样了,就是得不到相同的结果。

苦苦搜索了一番,原来categories过的类要使XCode识别,需要添加链接参数,在工程中设置如下:Build Settings->other linker flags加入-ObjC或者-all_load。例子工程加入的参数是-all_load。

引用老外的解释:

Objective-C does not define linker symbols for each function (or method, in Objective-C) - instead, linker symbols are only generated for each class. If you extend a pre-existing class with categories, the linker does not know to associate the object code of the core class implementation and the category implementation. This prevents objects created in the resulting application from responding to a selector that is defined in the category.

To resolve this issue, the target linking against the static library must pass the -ObjC option to the linker. This flag causes the linker to load every object file in the library that defines an Objective-C class or category. While this option will typically result in a larger executable (due to additional object code loaded into the application), it will allow the successful creation of effective Objective-C static libraries that contain categories on existing classes.

Important : For 64-bit and iPhone OS applications, there is a linker bug that prevents -ObjC from loading objects files from static libraries that contain only categories and no classes. The workaround is to use the -all_load or -force_load flags.

重新编译,运行,终于看到期待已久的日历界面了。thank goddess! 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值