tags:

views:

132

answers:

3
+2  Q: 

iPhone Frameworks

What is a strong iPhone framework to start out developing with, besides the SDK from Apple? Are there any that exist to speed up development time?

A: 

There is Mono Touch which enables you to develop using C#.

Mongus Pong
+2  A: 

ASIHTTPRequest

Excerpt

It is suitable performing basic HTTP requests and interacting with REST-based services (GET / POST / PUT / DELETE). The included ASIFormDataRequest subclass makes it easy to submit POST data and files using multipart/form-data.

Also,

skpsmtpmessage

Excerpt

This code implements a quick class for sending one off messages via SMTP on the iPhone

EDIT:

A quick google search gave me this link

Mihir Mathuria
+2  A: 

The biggest framework of this kind is Three20. Facebook and many other companies use this. Three20 is geared towards apps that pull data from the web. It helps with common patterns like a photo viewer or table view backed by web data. Another neat feature is that it has stylesheets, similar in concept to CSS.

Having said all that, some people like it and some do not. There was a brief period where apps using it were rejected from the App Store. Overall, the project looks to have improved since then.

Colin Gislason
THank you, looks/sounds good.
Kevin