Reputation: 14113
I want to create chat application in iPhone. Are there any framework(s) which support the same? Do I have to use a third party tool for creating it? If yes, which one?
Upvotes: 0
Views: 1703
Reputation: 82
If you can write it directly you can create from Objective-C. In this article nearly everything is explained.
But if you want to create in JavaScript and HTML, there is a application called Appcelerator Titanium that you can use to develop the application. You can look here to see a chat example with Titanium. Titanium converts your code to Objective-C at the end.
Upvotes: 3