将XCode从4.2升级到4.3后,我遇到了以下问题.我无法建立它.你们有没有想法如何解决这个问题?甚至一些线索对我有帮助.
ld: warning: ignoring file /Applications/Xcode.app/Contents/Developer/Library/Frameworks/SenTestingKit.framework/SenTestingKit, missing required architecture armv7 in file
Undefined symbols for architecture armv7:
"_STComposeString", referenced from:
-[NSMutableURLRequest_ParametersTest verifyDefaultParametersForRequest:] in NSMutableURLRequest+ParametersTest.o
-[NSMutableURLRequest_ParametersTest verifyModifiedParametersForRequest:] in NSMutableURLRequest+ParametersTest.o
-[NSMutableURLRequest_ParametersTest verifyEmptyParametersForRequest:] in NSMutableURLRequest+ParametersTest.o
-[NSString_URLEncodingTest testURLEncodedString] in NSString+URLEncodingTest.o
-[NSURL_BaseTest testURLStringWithoutQuery] in NSURL+BaseTest.o
-[OAHMAC_SHA1SignatureProviderTest testSignClearText] in OAHMAC_SHA1SignatureProviderTest.o
-[OAMutableURLRequestTest testGenerateNonce] in OAMutableURLRequestTest.o
...
"_OBJC_CLASS_$_SenTestCase", referenced from:
_OBJC_CLASS_$_NSMutableURLRequest_ParametersTest in NSMutableURLRequest+ParametersTest.o
_OBJC_CLASS_$_NSString_URLEncodingTest in NSString+URLEncodingTest.o
_OBJC_CLASS_$_NSURL_BaseTest in NSURL+BaseTest.o
_OBJC_CLASS_$_OAHMAC_SHA1SignatureProviderTest in OAHMAC_SHA1SignatureProviderTest.o
_OBJC_CLASS_$_OAMutableURLRequestTest in OAMutableURLRequestTest.o
_OBJC_CLASS_$_OAPlaintextSignatureProviderTest in OAPlaintextSignatureProviderTest.o
_OBJC_CLASS_$_OARequestParameterTest in OARequestParameterTest.o
...
"_OBJC_METACLASS_$_SenTestCase", referenced from:
_OBJC_METACLASS_$_NSMutableURLRequest_ParametersTest in NSMutableURLRequest+ParametersTest.o …
Run Code Online (Sandbox Code Playgroud) 我正在尝试更改我的应用名称,该名称在iOS的设备主屏幕上以图标显示。每个帖子都说可以通过更改App的Info.list文件中“捆绑显示名称”中的字符串来完成。但这对我没有用。我已经更改了“项目名称”,“目标名称”和“此捆绑包的显示名称”。这些都没有帮助我。
当我使用以下代码检查正在运行的应用程序上的捆绑包显示名称时,它将显示更新的名称。但是应用名称仍然保留。
NSLog(@"APP NAME : %@",[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleDisplayName"]);
Run Code Online (Sandbox Code Playgroud)
顺便说一句,我的应用程序是在大约4-5年前创建的,而我最近一直在尝试更改应用程序的名称。
你们能帮我吗?任何可能的解决方案或建议都无关紧要。如果您需要更多信息,请告诉我。
谢谢。