我正在开发一个使用 twitter API 的应用程序。
该应用程序在连接到 IOS 设备时运行良好,但是当我将架构从 armv6 更改为 i386 以使其在模拟器上运行时,我收到此错误:
ld: warning: ignoring file /Users/username/Desktop/tweetsAloud/tweets2/tweetsAloud/Src/NeoSpeech/lib-i iphoneos/libvt_eng_julie.a, missing required architecture i386 in file
Undefined symbols for architecture i386:
"_VT_LOADTTS_ENG", referenced from:
-[TweetsViewController viewWillAppear:] in TweetsViewController.o
"_VT_UNLOADTTS_ENG", referenced from:
-[TweetsViewController viewWillDisappear:] in TweetsViewController.o
"_VT_TextToFile_ENG", referenced from:
-[TweetsViewController readyStringToPlay:] in TweetsViewController.o
ld: symbol(s) not found for architecture i386
collect2: ld returned 1 exit status
所以我已经阅读了很多建议,并尝试了其中的大部分,但运气不佳。
我首先确保我拥有所有的框架,然后我尝试编辑 project.pbxproj,但仍然没有工作。
我已经尝试清理和更改构建设置。
有人知道为什么我会收到此错误消息吗?