当我生成一个Entitlements.plist时,内容如下所示
<key>application-identifier</key>
<string>$(AppIdentifierPrefix)$(CFBundleIdentifier)</string>
<key>keychain-access-groups</key>
<array>
<string>$(AppIdentifierPrefix)$(CFBundleIdentifier)</string>
</array>而不是像这样
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>get-task-allow</key>
<false/>
</dict>
</plist>不确定我做错了什么...?
发布于 2010-08-26 05:37:06
Apple已经将授权更改为您现在看到的新版本。你没有做错任何事。
https://stackoverflow.com/questions/3505313
复制相似问题