Are there any repositories around for open sourced iPhone and iPad components?

For instance, I have found myself needing to create several new types of table cells to mimic some of Apple's existing functionality (for instance, all the different types of table cells present in the Settings application). I can't imagine I'm alone here.

Where do you go to find open sourced reusable components, or do you just write and hoard your own?

Update: I know there are open source full projects around (see this question), but rummaging through them and picking and choosing still leads to significant duplication of effort.

Meta: There's a site for that!

There's a new nicely browsable list of iOS controls at http://cocoacontrols.com/.

Ongoing List

Here are some libraries that I've found or been told about (even answered here) since asking this question:

link|improve this question
4  
Three20 is probably the most extensive and helpful component library for iPhone that I've seen so far. – Adam Woś Jul 16 '10 at 8:01
3  
As per what I've heard, Three20 is overkill if you're looking for simple subclassed UI components. Is anyone up for starting a new repository for open source subclassed UI components? I'm game.... (and I'm decent at UI programming for iPhone). – Sid Apr 7 '11 at 1:39
8  
There is cocoacontrols.com – theraven Apr 28 '11 at 5:39
2  
ASIHTTPRequest is being deprecated by the author; a good alternative for most needs is restkit.org (or on GitHub at github.com/RestKit/RestKit). – Robert Altman Nov 11 '11 at 17:15
1  
Just wanted to mention that I've had a great experience with QuickDialog. Very nice library for quickly making user entry forms. – nazbot Feb 18 at 16:56
show 1 more comment
feedback

25 Answers

Here are some good iOS open-source libraries/frameworks & projects:

UI Libraries & Frameworks

Networking

  • REST
    • RestKit: Makes interacting with RESTful web services simple, fast and fun
    • HTTPRiot: A simple HTTP REST Library
    • ObjectiveResource: Makes interacting with Ruby on Rails applications dead simple
  • Sockets
    • AsyncSocket: TCP/IP socket networking library that wraps CFSocket and CFStream
    • Zimt: HTML5 Websockets

Core Data

Projects

Game Libraries & Frameworks

Testing Libraries & Frameworks

link|improve this answer
feedback

Not many people build open-sourced components for iPhone because they would use their time to build up applications and sell them on AppStore. :-) But lots of people are kind enough to give all their efforts for free. As John Fricker suggested, you will get a huge number of iPhone projects by taking: http://code.google.com/search/#q=UIKit

If you want a "Settings Table"-liked component, it's here: http://code.google.com/search/#q=UIPreferencesTable (UIPreferencesTable is one of unofficial APIs in iPhone SDK). First result is worth to read: http://code.google.com/p/iphone-placemaps/

link|improve this answer
feedback

I have released three new Open Source projects on github the last month.

CWFoundation - Augmenting the Foundation framework

  • Conditional logging
  • Network monitoring
  • XML to domain object translations
  • Concurrency additions to NSObject and NSOperationQueue
  • And a bunch of small convenience stuff

CWUIKit - Additions to UIKit

  • Block based callbacks for UIAlertView and UIActionSheet
  • A Callout view like in MapKit
  • Column table view, like UITableView but with multiple columns
  • Linear layout view for dynamically sizing views
  • And many many more views and additions to make UI building easier

CWCoreData - Making it easy to work with several managed contexts

  • Lazy creation of default Core Data objects
  • Thread local NSManagedObjectContext instances
  • And a bunch of convenience methods for common tasks

I have also written a longer blog post on the topic of open source on iOS called The state of iOS Open Source - and what to do about it. The truth is that there is a lot of open source code out there, but most of it is not well packaged for re-use and collaboration.

link|improve this answer
feedback

i think all the answers are missing a point here.

Here are the sites from were you can find reusable components

1) http://cocoacontrols.com/

2) http://open.iphonedev.com/

3) http://cocoaobjects.com/

Here is the twitter account where you can find popular reusable components on github about iPhone or iPad 4) https://twitter.com/#!/github_objc

as answered here Is there a gallery of reusable iPhone components on the web?

link|improve this answer
feedback

UIView that allows you to build Rating components to provide the same kind of experience AppStore or Youtube applications on iPhone do.

http://code.google.com/p/s7ratingview/

link|improve this answer
feedback

cocos2d-iphone is a great 2D game engine with a built-in physics engine.

link|improve this answer
feedback

code.google.com has too many to name.

Also WordPress released their iPhone app open source here

link|improve this answer
feedback

Sweet and simple to use. Straighforward iPhone way: http://code.google.com/p/s7graphview/

link|improve this answer
feedback

I've been working on a library of re-usable components which can be found at http://github.com/huddletech/HTFramework

link|improve this answer
feedback

Core Plot - a plotting framekwork for iOS and Mac development. It's open source and very flexible.

link|improve this answer
feedback

Cocoa Objects is a repository that lists open source, reusable Objective-C code for Mac OS and iOS.

link|improve this answer
feedback

Make sure you double-check the component's license.

If it's MIT or Apache then most of the times you're OK, but if it's GPL, you need to either release the source code of the application you're writing or ask the original author for an permission to use the component.

link|improve this answer
feedback

I don't know of any control-specific repositories, but there are a number of open-source iPhone projects around that can be helpful for mimicking behavior.

link|improve this answer
feedback

Tapku looks like another nice one.

link|improve this answer
feedback

I just started a collection of open-source self-contained (.h/.m, not external deps) components at https://github.com/andreyvit/SoloComponents-iOS, published three of my own components there initially.

link|improve this answer
feedback

I was thinking about this just yesterday, there are so many Open Source projects out there that could be ported to the iphone but they aren't, obviously a most of it is not relevant to the iphone (anything use X for example) :)

I think the community needs something like Macports but for the iphone (iphonePorts??) of course many of the existing open source applications won't be relevant but the libraries can be extremly useful. I am currently looking into porting TTS library to iphone (see my question here )

link|improve this answer
feedback

TSAlertView drop in replacement for UIAlertView with additional features and customization:

https://github.com/TomSwift/TSAlertView

link|improve this answer
feedback

There is a very gost post on oleb.net about the best ios and mac development related links, with several components and tutorials.

http://oleb.net/blog/2011/05/best-ios-and-mac-development-related-links-april-2011/

And one excelent library that has not been said here yet is ASIHTTPRequest

http://allseeing-i.com/ASIHTTPRequest/

link|improve this answer
feedback

I see no mention of JSON parser/generator. What do you think about this one: http://stig.github.com/json-framework/

Also for regular expression support: RegexKitLite

link|improve this answer
feedback

One of the best share component AddThis

link|improve this answer
feedback

Custom UISwitchView, enables you to add your own colors and label instead of on/off.

https://github.com/alinux/iPhone-custom-switch-UIView

link|improve this answer
feedback

You can also have a look at my random collection of components on GitHub. It's stuff I couldn't find (that's why I coded them) so you might be lucky and find what you need:

https://github.com/doukasd/iOS-Components

link|improve this answer
feedback
  • Interesting that no-one's flagged this one yet: NGMoviePlayer. I had to recreate the .xib but that's no biggie. It's a great starting point for an AVPlayer-based media player.
  • Not technically a 100% iOS component, but I LOVE QuincyKit, it makes iOS crash reporting so much easier.
  • TBXML is my XML library of choice. The SudzC website uses TouchXML, which isn't bad either.
  • dimzzy's ViewsCache project provides a simple, clean implementation of dequeueReusableViewWithIdentifier (abstracting UITableViewCell's reusability to UIViews). I have had some success implementing a custom grid control with this (similar to AQGridView, although since I found that I'm using it instead).
  • pixelfreak already posted json-framework for JSON parsing, but I'd say use JSONKit instead. Why? Performance.
link|improve this answer
feedback

If you're looking for examples of free game source, here's a great one called Tap Blaster HD. Complete game source available for download - http://9magnets.com/freebies.html

link|improve this answer
feedback

AudioPanel - sliding panel that can play and record sound. Also it can import sound from iPhone/iPad Music Library.

https://github.com/shmidt/AudioPanel/wiki

link|improve this answer
feedback

protected by Will Nov 11 '10 at 17:19

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.