本文介绍了哪个xcode用于在与iOS 8兼容的iTunes上上传新版本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我必须上传与iOS 8兼容的我的应用程序的更新版本。
当我从Xcode 6.1(非Beta)上传应用程序时,我收到以下错误
I have to upload newer version of my app which is compatible to iOS 8.When I am uploading the app from Xcode 6.1 (Not Beta) I am getting following error
当我使用XCode 5.1.1上传应用程序时,我无法使用以下代码进行推送通知。
and when I am uploading the app with XCode 5.1.1 I am not able to use the following code for Push Notification.
UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:(UIRemoteNotificationTypeBadge|UIRemoteNotificationTypeSound|UIRemoteNotificationTypeAlert) categories:nil];
[[UIApplication sharedApplication] registerUserNotificationSettings:settings];
[[UIApplication sharedApplication] registerForRemoteNotifications];
推荐答案
据我所知你必须打开并运行该项目曾在xcode 6中确保iPhone 6/6 +和iOS 8支持。然后通过xcode上传。
As far as I know you have to open and run the project once in xcode 6 to ensure iPhone 6/6+ and iOS 8 support. Then upload via xcode.
这篇关于哪个xcode用于在与iOS 8兼容的iTunes上上传新版本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!