且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

我的iPad应用程序可以从应用商店拒绝使用Tapku库吗?

更新时间:2023-10-25 17:19:04

使用第三方框架不应该有任何麻烦。关于什么是内部和外部有很多猜测,但是从我读过的框架不包括在许可证更改中。

You shouldn't have any trouble using a 3rd party framework. There's a whole lot of speculation going around about what's in and out, but from what I've read frameworks are not included in the license change.


应用程序必须最初使用由iPhone OS WebKit引擎执行的Objective-C,C,C ++或JavaScript编写,并且只有使用C,C ++和Objective-C编写的代码才能编译并直接链接到Documented API例如,禁止通过中间转换或兼容性层或工具链接到Documented API的应用程序)

Applications must be originally written in Objective-C, C, C++, or JavaScript as executed by the iPhone OS WebKit engine, and only code written in C, C++, and Objective-C may compile and directly link against the Documented APIs (e.g., Applications that link to Documented APIs through an intermediary translation or compatibility layer or tool are prohibited)

Tapku )是在Objective-C中写的,所以我没有看到违反上述。对协议的修改主要涉及 Adob​​e的iPhone打包机 Monotouch

Tapku (as far as I know) is written in Objective-C, so I don't see a violation of the above. The modifications to the agreement mostly address frameworks like Adobe's iPhone Packager and Monotouch.

在另一个注意事项 - 不要太担心您的应用程式将被拒绝或不被拒绝。阅读 iPhone人机界面指南和使用他们的标准API,你会做得很好。如果你被拒绝,他们通常会给你一个详细的解释为什么。

On another note - don't worry too much about whether your app will get rejected or not. Read the iPhone Human Interface Guidelines and use their standard API and you'll do fine. If you do get rejected they will normally give you a detailed explanation why.