我聽說有消息稱蘋果拒絕使用three20框架的應用程序。我的項目廣泛使用它。這意味着我會遇到麻煩。允許Three20嗎?
1
A
回答
3
這是舊的新聞。一年前在Three20中有一個私人API調用,並立即被刪除。當你在谷歌搜索與科技有關的任何東西時,如果你想準確的話,我只會在過去一個月顯示結果,也許是過去的一年。
1
從我收集的信息看來,Apple似乎允許Three20應用程序。如果您查看Three20的GitHub歷史記錄,您還會注意到已經對不使用私有API進行了一些更改。
0
您可以檢查 「Three20 App Store的狀態」 three20的網站上:
您可以在第一頁上看到,如果LIB是好的(或沒有)的應用程序商店。
「作爲2009年12月23日的:Three20 App Store的狀態:安全」
1
是Three20是允許AppStroe。我們正在使用最近2年的發展。
0
確保使用儀器泄漏檢查內存泄漏。特別是如果您在Three20中使用JSON解析庫。
如果您希望在一夜之間測試泄漏情況,您可以Applescript模擬器運行自動化測試。
這裏有一個例子:
on run
main()
end run
on main()
tell application "System Events"
set myWindow to get window 1 of application process "iOS Simulator"
set myField to text field 1 of myWindow
end tell
set iterations to 0
repeat while true
activate application "iPhone Simulator"
set iterations to iterations + 1
log iterations
tell application "System Events"
click myField
keystroke return
end tell
delay 3
end repeat
end main
相關問題
- 1. NatVis:typedefs允許嗎?
- 2. C++允許CTFE嗎?
- 3. Postgres允許json []或jsonb []嗎?
- 4. 是ADD A,5允許嗎?
- 5. 允許重新申報嗎?
- 6. &允許使用XML嗎?
- 7. IRI允許有空間嗎?
- 8. 這是允許在C嗎?
- 9. dispatch_group_wait允許排隊嗎?
- 10. GPL允許這樣的修改嗎?哪些許可證允許這不是?
- 11. 陣列允許不允許
- 12. 我如何使不允許列允許空和允許空列不允許空
- 13. 我應該允許多次登錄嗎?
- 14. Enumerable中的塊鏈接允許嗎?
- 15. 允許網址進入網站嗎?
- 16. 策略模式允許狀態嗎?
- 17. 在HashMaps中允許原始數組嗎?
- 18. iframe可以允許同源嗎?
- 19. Java允許可空類型嗎?
- 20. 允許在SQL事務中讀取嗎?
- 21. 適用於iOS的PayPal API - 允許嗎?
- 22. iPhone Mail Composer外觀更改允許嗎?
- 23. Firefox擴展 - 這是允許/合法嗎?
- 24. Spark/YARN允許多線程嗎?
- 25. python中允許字符指針嗎?
- 26. 在codeigniter中允許註冊嗎?
- 27. Handlebars.js允許動態模板嗎?
- 28. ArrayList <Integer>允許添加String嗎?
- 29. SQLServer中默認允許交易嗎?
- 30. GitLab允許Wiki合併請求嗎?
。「蘋果拒絕了使用該three20框架應用程序」 [引文需要] – BoltClock 2010-09-28 12:02:46
@Bolt維基百科ftw。 – Emil 2010-09-28 12:55:11