There are quite a few reusable iPhone solutions/tricks on the web, mostly scattered on various blogs. However I could not find any single place where they would be collected together (something like what MacUpdate/VersionTracker is to applications).

Is there such a site already?

If not, I'm thinking to create one. What components would you like to see there, and what features do you think such a site needs? (I'm thinking about sharing non-visual classes as well as visual components, and maybe simple code snippets showing various techniques/tricks too.)

I'm aware of http://stackoverflow.com/questions/640805/open-source-iphone-components-reusable-views-controllers-buttons-table-cells.

link|improve this question

80% accept rate
feedback

8 Answers

up vote 3 down vote accepted

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

link|improve this answer
Would upvote twice if I could. Marked this as a real answer, finally! – Andrey Tarantsov Aug 4 '11 at 18:04
feedback

If you need to display some sort of activity indication while doing background tasks, you can take a look at MBProgressHUD for iPhone.

link|improve this answer
Thanks for posting it! – Andrey Tarantsov May 15 '09 at 7:52
feedback

The Three20 "library" helped me a lot with understanding how to create reusable components.

Perhaps you already know what functionality to implement. Plus, the library itself is already quite extensive.

link|improve this answer
Yes, it's great. Unfortunately it kinda suffers from a “not invented here” syndrome, subclassing and extending the world. But it's a really good source of example code nevertheless. (Just please don't create reusable components that way. Self-contained Component.h/Component.m rules!) – Andrey Tarantsov May 9 '09 at 21:49
@Andrey: Could you explain a bit more about your last line? – Kriem May 9 '09 at 21:59
1  
@Kriem: almost any class in Three20 brings a few other classes with it, so that you need to pull the whole library to use a component. If you want to create a component that's truly reusable and not a pain in the ass, your best choice is to constrain yourself to a single .h and a single .m file that can be added to any iPhone project. This also means your components should not rely on any custom utility categories on standard classes. – Andrey Tarantsov May 12 '09 at 16:23
@Andrey - I see. Thanks for your explanation. :) – Kriem May 12 '09 at 17:13
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
@eisernWolf thanks for the component. Whoever downvoted this, please note that leaving a comment when voting down is considered a good Stack Overflow practiсe. – Andrey Tarantsov Jul 28 '09 at 7:44
feedback

If you are looking for an iPhone UI for web page design, check out the free IUI on Google Code.

link|improve this answer
feedback

Great iPhone custom UI elements repository

link|improve this answer
1  
I think you need to mention it's Three20 in the body of the post — there is one other reply about it. – Andrey Tarantsov May 9 '09 at 21:39
feedback

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

link|improve this answer
A cool component indeed, thanks. – Andrey Tarantsov Oct 7 '09 at 8:18
feedback

Kal implements a Calendar like the one in the Calendar app for you. http://github.com/klazuka/Kal

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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