Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an open source depository of custom classes for the Iphone? [closed]

I'm trying to learn Objective-C for xcode. I was wondering if there was an open source depository for custom classes. Things that programmers re-use. ( ie. playing card class, or peer to peer methods )

I've searched google, but so far haven't seen any type of site.

like image 763
Chris Young Avatar asked Mar 08 '10 20:03

Chris Young


3 Answers

When in doubt, search github.

  • http://github.com/facebook/three20
  • http://github.com/ldandersen/scifihifi-iphone
  • http://github.com/clarkware/iphone-goodies
  • http://github.com/devinross/tapkulibrary#readme

The Three20 codebase is very solid.

like image 175
typeoneerror Avatar answered Nov 19 '22 13:11

typeoneerror


Shameless plug

CocoaPods manages library dependencies for your Xcode project.

You specify the dependencies for your project in one easy text file. CocoaPods resolves dependencies between libraries, fetches source code for the dependencies, and creates and maintains an Xcode workspace to build your project.

Ultimately, the goal is to improve discoverability of, and engagement in, third party open-source libraries, by creating a more centralized ecosystem.

  • The tool: https://github.com/CocoaPods/CocoaPods
  • And the available libraries: https://github.com/CocoaPods/Specs
like image 2
alloy Avatar answered Nov 19 '22 12:11

alloy


This sort of stuff is typically very dispersed across the web - as suggested in another answer, http://www.github.com is a good resource. Other places to search are -

http://sourceforge.net/search/?type_of_search=soft&words=iphone http://code.google.com/query/#q=iphone

I keep some examples checked in to Google code under BSD license. Github and Google Code are good places to contribute any "generic" code you've written back to the community.

like image 1
Robert Conn Avatar answered Nov 19 '22 14:11

Robert Conn