Ansd
Ansd

Reputation: 1865

Three20 competitors/alternatives

I see three20 a very powerful lib, spicily because Facebook and Twitter use it. I just want to know if there are any competitors/alternatives for Three20? or even simple.

Upvotes: 5

Views: 4583

Answers (5)

LiangWang
LiangWang

Reputation: 8836

Three20 provides a lot of useful wrapper to facilitate development. It's biggest advantages and until know nothing could replace it.

Upvotes: 0

g_fred
g_fred

Reputation: 6028

Check this list of iOS controls.

You'll find over 200 open source custom controls there. I've used some of them (star rating, confirm button), it's lightweight and easy to embed. Check that the license suits your needs before though!

Upvotes: 4

J.W.
J.W.

Reputation: 18181

nimbus seems to be a project that will address some of the issues.

Upvotes: 7

audience
audience

Reputation: 2412

I use Three20 a lot, but I'm always in search of an alternative, because Three20 is not a lightweight framework and because importing only a few features of Three20 is not practical. But I don't know any good alternative. If you only need a few features I prefer to write my own code for it or use another library.

For some features of Three20 I know other libraries that does the same thing. It's always a better way to use small libraries, because of file size and side-effects.

  1. UILabel with styled text: OHAttributedLabel
  2. Load and cache images asynchroniously: ImageLoader
  3. Pull to refresh on a table view: PullToRefresh

In addition to this list you can have a look at TapkuLibrary which adds features like CoverFlow or a CalendarView to your app.

Finally GitHub is always a good resource, when you search libraries for special features.

Upvotes: 4

Andrew
Andrew

Reputation: 167

THree20 is one of the few libs but if you look around github you can find plenty of sample ios projects with source code to learn from and adapt to your app.

Upvotes: 1

Related Questions