Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我收到以下错误,如下图所示
我删除了这个文件并再次添加了新文件,即使发生了同样的错误
我找不到修改的地方?
请指导我
提前致谢
您可能正在将此文件编译为 Objective-C++,而不是 Objective-C。您通常可以从文件扩展名中看出,这可能是“.mm”(或者这是您从 ObjC++ 某处包含的头文件)。
private是 C++(和 ObjC++)中的保留字。一个快速的解决方法是Private用大写P字母代替。
private
Private
P