0

So I am having some troubles right now with validating my iPhone app. I have made 3 apps before and have never experienced this. First when I attempt to validate xcode tells me that it needs the architecture armv6 so I add it then it tells me I am using a non-public api and some other stuff. I have added some screen shots below of exactly what is said. Thanks so much for you help it advance I really really appreciate itenter image description here

enter image description here

enter image description here

4

1 に答える 1

0

検証エラーは非常に具体的です。uniqueIdentifer は、iOS 5.0 の時点で UIDevice クラスの非推奨メソッドです。コード内で のインスタンスを検索し、[[UIDevice currentDevice] uniqueIdentifier]Apple が提案する任意の数の置換を使用します (たとえば、NSUUID クラスから)。

于 2013-09-13T21:23:28.877 に答える