Ios Xcode未读取外部硬盘上的解析框架

Ios Xcode未读取外部硬盘上的解析框架,ios,objective-c,iphone,xcode,ipad,Ios,Objective C,Iphone,Xcode,Ipad,我有一个项目存储在我的桌面上。然而,在我的外部硬盘上有一个框架(parse.framework)。无论何时硬盘被拔出,或者我退出Xcode,然后重新加载Xcode,它都会告诉我框架丢失了。我解决了这个问题,因为我删除了对框架的引用并重新添加了它,但每次我都必须这样做。有没有办法让我做一次就这样?另外,我想将我的应用程序导出为企业导出,该问题给出了解决方法: 在答案的评论中,有答案的链接是 不幸的是,每当我尝试使用终端构建我的应用程序时,我都会遇到一个错误,即找不到框架。我如何解决这个问题,这样我

我有一个项目存储在我的桌面上。然而,在我的外部硬盘上有一个框架(parse.framework)。无论何时硬盘被拔出,或者我退出Xcode,然后重新加载Xcode,它都会告诉我框架丢失了。我解决了这个问题,因为我删除了对框架的引用并重新添加了它,但每次我都必须这样做。有没有办法让我做一次就这样?另外,我想将我的应用程序导出为企业导出,该问题给出了解决方法: 在答案的评论中,有答案的链接是 不幸的是,每当我尝试使用终端构建我的应用程序时,我都会遇到一个错误,即找不到框架。我如何解决这个问题,这样我就可以构建和运行,而不用担心解析框架在我的外部硬盘上

更新****

正如您在下面的评论部分所看到的,@YuviGr告诉我将Parse.framework导入到我的项目中。我已经试过了,但我得到的错误如下:

ld: warning: directory not found for option '-F/Volumes/Seagate'
ld: warning: directory not found for option '-FBackup'
ld: warning: directory not found for option '-FPlus'
ld: warning: directory not found for option '-FDrive/My'
ld: warning: directory not found for option '-FDocuments/Downloads'
Undefined symbols for architecture i386:
  "_sqlite3_bind_blob", referenced from:
      -[PFSQLiteDatabase _bindObject:toColumn:inStatement:] in Parse(PFSQLiteDatabase.o)
  "_sqlite3_bind_double", referenced from:
      -[PFSQLiteDatabase _bindObject:toColumn:inStatement:] in Parse(PFSQLiteDatabase.o)
  "_sqlite3_bind_int64", referenced from:
      -[PFSQLiteDatabase _bindObject:toColumn:inStatement:] in Parse(PFSQLiteDatabase.o)
  "_sqlite3_bind_null", referenced from:
      -[PFSQLiteDatabase _bindObject:toColumn:inStatement:] in Parse(PFSQLiteDatabase.o)
  "_sqlite3_bind_parameter_count", referenced from:
      ___59-[PFSQLiteDatabase executeQueryAsync:withArgumentsInArray:]_block_invoke in Parse(PFSQLiteDatabase.o)
      ___57-[PFSQLiteDatabase executeSQLAsync:withArgumentsInArray:]_block_invoke in Parse(PFSQLiteDatabase.o)
  "_sqlite3_bind_text", referenced from:
      ___34-[PFDateFormatter dateFromString:]_block_invoke in Parse(PFDateFormatter.o)
      -[PFSQLiteDatabase _bindObject:toColumn:inStatement:] in Parse(PFSQLiteDatabase.o)
  "_sqlite3_clear_bindings", referenced from:
      ___34-[PFDateFormatter dateFromString:]_block_invoke in Parse(PFDateFormatter.o)
  "_sqlite3_close", referenced from:
      -[PFDateFormatter dealloc] in Parse(PFDateFormatter.o)
      ___30-[PFSQLiteDatabase closeAsync]_block_invoke in Parse(PFSQLiteDatabase.o)
  "_sqlite3_column_blob", referenced from:
      -[PFSQLiteDatabaseResult dataForColumnIndex:] in Parse(PFSQLiteDatabaseResult.o)
  "_sqlite3_column_bytes", referenced from:
      -[PFSQLiteDatabaseResult dataForColumnIndex:] in Parse(PFSQLiteDatabaseResult.o)
  "_sqlite3_column_count", referenced from:
      -[PFSQLiteDatabaseResult columnNameToIndexMap] in Parse(PFSQLiteDatabaseResult.o)
  "_sqlite3_column_double", referenced from:
      ___34-[PFDateFormatter dateFromString:]_block_invoke in Parse(PFDateFormatter.o)
      -[PFSQLiteDatabaseResult doubleForColumnIndex:] in Parse(PFSQLiteDatabaseResult.o)
  "_sqlite3_column_int", referenced from:
      -[PFSQLiteDatabaseResult intForColumnIndex:] in Parse(PFSQLiteDatabaseResult.o)
  "_sqlite3_column_int64", referenced from:
      ___34-[PFDateFormatter dateFromString:]_block_invoke in Parse(PFDateFormatter.o)
      -[PFSQLiteDatabaseResult longForColumnIndex:] in Parse(PFSQLiteDatabaseResult.o)
  "_sqlite3_column_name", referenced from:
      -[PFSQLiteDatabaseResult columnNameToIndexMap] in Parse(PFSQLiteDatabaseResult.o)
  "_sqlite3_column_text", referenced from:
      -[PFSQLiteDatabaseResult stringForColumnIndex:] in Parse(PFSQLiteDatabaseResult.o)
  "_sqlite3_column_type", referenced from:
      -[PFSQLiteDatabaseResult objectForColumnIndex:] in Parse(PFSQLiteDatabaseResult.o)
      -[PFSQLiteDatabaseResult columnIndexIsNull:] in Parse(PFSQLiteDatabaseResult.o)
  "_sqlite3_errmsg", referenced from:
      -[PFSQLiteDatabase _errorWithErrorCode:] in Parse(PFSQLiteDatabase.o)
  "_sqlite3_finalize", referenced from:
      -[PFDateFormatter dealloc] in Parse(PFDateFormatter.o)
      ___59-[PFSQLiteDatabase executeQueryAsync:withArgumentsInArray:]_block_invoke in Parse(PFSQLiteDatabase.o)
      ___57-[PFSQLiteDatabase executeSQLAsync:withArgumentsInArray:]_block_invoke in Parse(PFSQLiteDatabase.o)
      -[PFSQLiteStatement close] in Parse(PFSQLiteStatement.o)
  "_sqlite3_open", referenced from:
      -[PFDateFormatter init] in Parse(PFDateFormatter.o)
      ___29-[PFSQLiteDatabase openAsync]_block_invoke in Parse(PFSQLiteDatabase.o)
  "_sqlite3_prepare_v2", referenced from:
      -[PFDateFormatter init] in Parse(PFDateFormatter.o)
      ___59-[PFSQLiteDatabase executeQueryAsync:withArgumentsInArray:]_block_invoke in Parse(PFSQLiteDatabase.o)
      ___57-[PFSQLiteDatabase executeSQLAsync:withArgumentsInArray:]_block_invoke in Parse(PFSQLiteDatabase.o)
  "_sqlite3_reset", referenced from:
      ___34-[PFDateFormatter dateFromString:]_block_invoke in Parse(PFDateFormatter.o)
      -[PFSQLiteStatement reset] in Parse(PFSQLiteStatement.o)
  "_sqlite3_step", referenced from:
      ___34-[PFDateFormatter dateFromString:]_block_invoke in Parse(PFDateFormatter.o)
      ___57-[PFSQLiteDatabase executeSQLAsync:withArgumentsInArray:]_block_invoke in Parse(PFSQLiteDatabase.o)
      -[PFSQLiteDatabaseResult next] in Parse(PFSQLiteDatabaseResult.o)
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)

我会发布图片,但显然我需要足够的代表来做这件事。

事实上,在尤维格的帮助下,我找到了解决这个问题的方法。我必须将parse.framework导入到项目文件夹中,并且我需要在项目中列出parse QuickStart Guide中列出的所有框架。

为什么不将框架添加到项目文件夹中?不仅仅是将其引用到我尝试过的外部驱动器,而是在它之后,我得到的错误比我开始的还要多,然后你必须找出错误,如果你想,你可以将它们添加到问题中,我们将逐一排序。但是为了让你解决你的问题,如果你想发布你的应用程序,你必须解决它,你必须将框架添加到你的项目中。好的@YuviGr我会这样做。我会让你知道我得到的错误,你可以用来上传图像