2010-09-28 74 views
1

我聽說有消息稱蘋果拒絕使用three20框架的應用程序。我的項目廣泛使用它。這意味着我會遇到麻煩。允許Three20嗎?

+7

。「蘋果拒絕了使用該three20框架應用程序」 [引文需要] – BoltClock 2010-09-28 12:02:46

+0

@Bolt維基百科ftw。 – Emil 2010-09-28 12:55:11

回答

3

這是舊的新聞。一年前在Three20中有一個私人API調用,並立即被刪除。當你在谷歌搜索與科技有關的任何東西時,如果你想準確的話,我只會在過去一個月顯示結果,也許是過去的一年。

1

從我收集的信息看來,Apple似乎允許Three20應用程序。如果您查看Three20的GitHub歷史記錄,您還會注意到已經對不使用私有API進行了一些更改。

0

您可以檢查 「Three20 App Store的狀態」 three20的網站上:

http://www.three20.info

您可以在第一頁上看到,如果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