Tag: xcode6 beta7

错误ITMS-9000:“签名丢失或无效。

错误ITMS-9000:“签名缺失或无效。捆绑包path”Payload / My_app_name.app / GooglePlus.bundle“中的捆绑包”com.google.GPPSignIn3PResources“未使用Apple提交证书进行签名。 我以前能够提交相同的构build现在只是做了UI相关的几个变化,并试图重新提交构build并得到这个错误。 有没有解决办法来处理?

可选types'$ T11'不能用作布尔值; 从安装XCode 6 beta 7开始,testing'!= nil'

这里是我得到错误的代码: for (key, value) in info { let fieldValue: AnyObject? = value if (!fieldValue || fieldValue?.length == 0) { // this line gives the error informationComplete = false; } } 这是XCodebuild议我使用这会导致另一个错误: for (key, value) in info { let fieldValue: AnyObject? = value if ((!fieldValue || fieldValue?.length == 0) != nil) { //bool not convertible to […]