本文介绍了Xcode 7 Null传递给需要非null参数的被调用者的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我更新了xcode 7并给出了这个错误
i updated xcode 7 and gives this error
Null传递给需要非空参数的被调用者
Null passed to a callee that requires a non-null argument
_recorder = [[AVAudioRecorder alloc]initWithURL:[NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/%@.%@", [NSHomeDirectory() stringByAppendingString:@"/Documents"], name, extension]] settings:nil error:nil];
推荐答案
如果困扰你的是警告,你可以抑制使用此 -Wnonnull
If what bothers you is the warnings, you can supress that using this -Wnonnull
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wnonnull"
_recorder = [[AVAudioRecorder alloc]initWithURL:[NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/%@.%@", [NSHomeDirectory() stringByAppendingString:@"/Documents"], name, extension]] settings:nil error:nil];
#pragma clang diagnostic pop
这篇关于Xcode 7 Null传递给需要非null参数的被调用者的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!