James Wanchai
James Wanchai

Reputation: 3031

iPhone Web App to Native app using Airplay SDK?

Has anyone had any experience of this? Is it easy? I know very little C, but all I want to do is package the web app as a native app. Is that allowed by Apple anyway?

Thanks!

Upvotes: 0

Views: 1062

Answers (2)

Cheng
Cheng

Reputation: 1249

I am learning the airplay sdk now. You can find the information in the www.airplaysdk.com.

There are a lot of examples in the airplaysdk, so you can learn it easily. I have wrotten a small game use airplaysdk, i think it works well and worth to learning.

Upvotes: 0

user283578
user283578

Reputation:

Airplay SDK is a C/C++ programming environment. Its broad support for C/C++ standard libraries makes it easy to bring existing C/C++ codebases to the platform, including Open Source codebases.

It's possible to bring "web apps" to Airplay SDK, but you'll have to do a certain amount of legwork - for example, finding and porting an Open Source JavaScript runtime to Airplay SDK. Similarly for an HTML rendering engine. Ideaworks Labs can already provide various scripted runtime engines that work with Airplay SDK (Lua, Python, Ruby) but JavaScript is not currently on the list.

Upvotes: 1

Related Questions