2010-09-28 165 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