ios – 使用Xcode 6.3编写NSParameterAssert错误

我正在使用NSParameterAssert的任何编译错误.例如:
-(instancetype)initForPlot:(CPTPlot *)plot withFunction:(CPTDataSourceFunction)function
{
    NSParameterAssert([plot isKindOfClass:[CPTScatterPlot class]]);
    NSParameterAssert(function);

    if ( (self = [self initForPlot:plot]) ) {
        dataSourceFunction = function;
    }
    return self;
}@H_403_3@ 
 

代码使用Xcode 6.2编译很好,但是它给Xcode 6.3提供了以下错误
/Users/xxxx/Project/App/Presentation/CorePlot/Source/CPTFunctionDataSource.m:110:5:在NSString中使用%s指令作为格式化参数传递给格式化方法

我已经在线查找,没有看到有关错误信息的信息.
我正在使用的临时解决方案如下:

#undef NSParameterAssert
#define NSParameterAssert(condition)    ({\
do {\
_Pragma("clang diagnostic push")\
_Pragma("clang diagnostic ignored \"-Wcstring-format-directive\"")\
NSAssert((condition),@"Invalid parameter not satisfying: %s",#condition);\
_Pragma("clang diagnostic pop")\
} while(0);\
})@H_403_3@ 
 

应该有一个更好的解决方案.

解决方法

所有你需要做的是更新你的核心图库到最新版本(这对我有用)BECAUSE:

如果你去Coreplot git repo(https://github.com/core-plot/core-plot/commits/master),

在提交内可以看到:

Commits on Feb 15,2015
@eskroch
Fixed Xcode 6.3 beta build warnings.
eskroch authored on Feb 15@H_403_3@ 
 

这意味着自2月15日以来,这个iOS 8.3发布之前很久以来,这个问题已经解决了,因为beta版本.

相关文章

背景 前端时间产品经理决定使用百度统计,使得 工程B 中原统计sdk-友盟统计,需要被去除。之前尝试去除...
结论: alloc负责分配内存和创建对象对应的isa指针; init只是返回alloc生成的对象。 所以alloc后,多次...
更新 如果UI愿意把启动图切割成n份,按一定约束在launchscreen.storyboard中进行排版,启动图效果会更好...
最近在看一本书《Effective OC 2.0》,今天看到有个tip是OC适中循环各自优劣性,作者最终推荐此块循环。...
// // ViewController.m // paintCodeTestOC //gif // Created by LongMa on 2019/7/25. // #import &a...
背景介绍 一般情况下,出于省电、权限、合理性等因素考虑,给人的感觉是很多奇怪的需求安卓可以实现,但...