IOS-SWIFT-XCODE错误-未找到架构arm64的符号

IOS-SWIFT-XCODE错误-未找到架构arm64的符号,ios,xcode,Ios,Xcode,无法启动应用程序,因为: //this one works okay var getWall = VKRequest(method: "wall.get", andParameters: nil, andHttpMethod: "GET") //this is how it should be var getWall = VKRequest(method: "wall.get", andParameters: [VK_API_OWNER_ID: "

无法启动应用程序,因为:

    //this one works okay       
    var getWall = VKRequest(method: "wall.get", andParameters: nil, andHttpMethod: "GET")

    //this is how it should be
    var getWall = VKRequest(method: "wall.get", andParameters: [VK_API_OWNER_ID: "some Int value"], andHttpMethod: "GET")
a在谷歌上搜索,发现我需要设置原型,我尝试了没有任何资源的下水道时代,甚至有了这套:
$(ARCHS_标准\u 32位)$(ARCHS_标准)arm64 armv7 armv7s x86_64 i386

但是没有任何更改(

评估所示文件的错误消息

例如:

Undefined symbols for architecture arm64:
  "_OBJC_CLASS_$_PuzzleInfoController", referenced from:
      objc-class-ref in AllPuzzlesController.o
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我发现错误消息引用的实际文件不包括在项目导航器中,尽管它位于项目目录中。在向项目添加PuzzleInfoController.h/.m文件并重建后,构建成功完成