有没有办法将XCode配置为使用最新的,不推荐使用的版本自动完成Cocoa方法?
例如
NSString *myString = @"Hello";
//xcode sets autocomplete to look like this
[myString writeToFile:arg1 atomically:arg2];
//however that gets a warning from the debugger
//the method is deprecated. the new method is:
[myString writeToFile:arg1 atomically:arg2 encoding:arg3 error:arg4];
我还没有掌握记忆,当出现问题时,我一直在使用自动完成和检查文档。我想知道为什么最新的iPhone SDK的默认xcode配置使用不推荐的方法自动完成。可以改变吗?
答案 0 :(得分:1)
键入时,您会看到autoComplete start显示下一部分,点击转义键,您可以看到可用的完成次数。输入一个字母,然后看一堆。再次击中逃生以隐藏它。
但这并没有真正回答你关于弃用方法的问题......