引言:
蘋果為廣大的開發者提供了一個很好的應用生态環境
參考資料:
1:如何向App Store送出應用
<a target="_blank" href="http://www.cocoachina.com/newbie/tutorial/2013/0508/6155.html">http://www.cocoachina.com/newbie/tutorial/2013/0508/6155.html</a>
2:App Store送出上線和市場推廣專題
<a target="_blank" href="http://www.cocoachina.com/special/market.html">http://www.cocoachina.com/special/market.html</a>
3: App Store Review Guidelines
<a target="_blank" href="https://developer.apple.com/appstore/resources/approval/guidelines.html#functionality">https://developer.apple.com/appstore/resources/approval/guidelines.html#functionality</a>
蘋果App Store稽核指南中文翻譯(2014.9.1更新)
<a target="_blank" href="http://www.cocoachina.com/appstore/20140901/9500.html#0-tsina-1-5518-397232819ff9a47a7b7e80a40613cfe1">http://www.cocoachina.com/appstore/20140901/9500.html#0-tsina-1-5518-397232819ff9a47a7b7e80a40613cfe1</a>
4:iTunes Connect 開發者上手經驗
<a target="_blank" href="http://www.cnblogs.com/zhw511006/archive/2013/01/15/2860945.html">http://www.cnblogs.com/zhw511006/archive/2013/01/15/2860945.html</a>
5:傻瓜式IOS釋出教程(一)iTunes Connect建立應用以及内購
<a target="_blank" href="http://blog.csdn.net/mrdo_home/article/details/10286633">http://blog.csdn.net/mrdo_home/article/details/10286633</a>
6:iOS開發者賬号申請流程詳解:
<a target="_blank" href="http://girlios.github.io/blog/2014/03/16/enrolling-in-apple-developer-programs/">http://girlios.github.io/blog/2014/03/16/enrolling-in-apple-developer-programs/</a>
7:iOS内購實作及測試Check List
<a target="_blank" href="http://onevcat.com/2013/11/ios-iap-checklist/">http://onevcat.com/2013/11/ios-iap-checklist/</a>
8:應用被拒10大理由
<a target="_blank" href="https://developer.apple.com/app-store/review/rejections/">https://developer.apple.com/app-store/review/rejections/</a>
9:iOS證書說明和釋出内購流程整理
<a target="_blank" href="http://www.cocoachina.com/ios/20150521/11889.html">http://www.cocoachina.com/ios/20150521/11889.html</a>
釋出App:
手動編包釋出:
釋出App有兩種方式,一種是手動方式,手動編包,再利用Application Loader 上傳應用
1:将編譯模式設定release
2:使用釋出版本的證書:
自動編包釋出:
1:編譯環境設定為iOS Device
2:點選Archive
了解編譯指令集:
<a target="_blank" href="http://wangzz.github.io/blog/2014/05/09/xcodeshe-zhi-xiang-zhi-architectureshe-valid-architectures/">http://wangzz.github.io/blog/2014/05/09/xcodeshe-zhi-xiang-zhi-architectureshe-valid-architectures/</a>
在iTunes Connect 中建立一個新App或送出一個更新App的申請:
Developer -> Member Center -> iTunes Connect -> Manage Your Applications -> Add New App
1:開始建立一個App 提供App名稱等等
SKU Number 的意思是區分你的app用的,可以填app的BundleIdentifier,或者能唯一辨別你的app的字元都可以。但是注意,SKU Number在app釋出後就不能更改了。
2:接下設定可用日期,價格等等 一般是設定一下價格就可以确定了.
3:接下來要準備不少東西:
1:icon 需要 1024 * 1024 尺寸的 圖示
2:5張軟體使用截圖
最後開始編譯打包App,使用 Application Loader 上傳我們的App.
可能遇到的錯誤:
1:icon圖示設定問題
解決辦法:
檢測info.plist檔案的icon設定項是否有多餘的:
2:是否是報紙,雜志類應用程式?
如果你的應用不包含這項功能那麼删除掉info.plist的設定就可以了,如下圖:
如果是的話:
<a target="_blank" href="http://hi.baidu.com/yanh105/item/d9b0dbc1fee3cd2aee4665bd">http://hi.baidu.com/yanh105/item/d9b0dbc1fee3cd2aee4665bd</a>
這篇教程教了怎麼制作
當我們正式準備送出應用時,蘋果會問如下圖中兩個問題:
1:第一個問題是問你的代碼中是否用到了加密,
2:第二個是問你的應用有沒有涉及到侵權問題.
一般情況,是兩個都選擇NO.
途中碰到一個非常炙手的問題,存檔編譯的App,每次都編譯失敗,生成一個 名字叫:Generic Xcode Archive 的玩意,這玩意目前不知道 是做什麼用的,
網上的解決辦法是:将其他靜态庫中的 Build Settings 中的 Skip install 更改為 YES, 主工程的 Skip install 依舊保持 為 NO. 就解決問題了,
但糾結的是,我這樣設定以後,依舊編譯錯誤, 原來還需要将靜态庫中的 所有頭檔案,歸置到Project 之中. 再次編譯,成功!
如圖:
Date:2012-08-06 16:27
關于Xcode 4.3x 版本送出稽核失敗的解決辦法:将工程中 Build Settings 的 Compress png files 設定為NO. (預設YES)
編譯後的大小和原來一樣,嘗試再次送出.成功!
資料參考:
1:ipa中提取圖檔資源 png處理方法
<a target="_blank" href="http://blog.csdn.net/stonexing5/article/details/7429422">http://blog.csdn.net/stonexing5/article/details/7429422</a>
2:用xcode4.3.2中的organizer順利釋出成功
<a target="_blank" href="http://blog.csdn.net/kingkong1024/article/details/7483606">http://blog.csdn.net/kingkong1024/article/details/7483606</a>
3:由Corrupt Icon造成的Invalid Binary
<a target="_blank" href="http://hi.baidu.com/wwssttt/item/a74136506ead3adbd48bacd7">http://hi.baidu.com/wwssttt/item/a74136506ead3adbd48bacd7</a>
Date: 2012-08-14 11:28
今天附上兩個連結
Application Loader 下載下傳位址:
<a target="_blank" href="https://itunesconnect.apple.com/apploader/ApplicationLoader_2.8.dmg">https://itunesconnect.apple.com/apploader/ApplicationLoader_2.8.dmg</a>
Application Loader 圖解教程
<a target="_blank" href="http://www.cocoachina.com/newbie/basic/2010/0726/1927.html">http://www.cocoachina.com/newbie/basic/2010/0726/1927.html</a>
Date: 2013-02-26 10:33
應用在App Store 的詳情位址:
<a target="_blank" href="https://itunes.apple.com/cn/app/id604608273?mt=8">https://itunes.apple.com/cn/app/id604608273?mt=8</a>
隻需要更換iD即可
Date:2013-08-13 13:52
稽核被拒絕了,觸犯了2.23,如下:
2.23: Apps must follow the iOS Data Storage Guidelines or they will be rejected
了解和遵循蘋果的iOS資料存儲指南
<a target="_blank" href="https://developer.apple.com/icloud/documentation/data-storage/">https://developer.apple.com/icloud/documentation/data-storage/</a>
參考以下兩則:
Date:2013-11-13
編譯不通過,提示LibPods.a 找不到. 請嘗試單獨編譯Pod的工程