Are there any tutorials describing how to create a library or is it framework for the iPhone? I have a number of methods that are shared between applications. These will be better maintained as a library.
|
1
|
|
|
|
|
|
Try this: http://tinyurl.com/cjvu8q Or incase Google changes the top link: http://tinyurl.com/cwq4tn |
||||
|
|
|
Put your code in a static library (as Roger indicated via his link). However, consider using an Xcode cross-project reference to "import" that static library into all the other projects that need it. I've whipped up a tutorial explaining how to do this (and why I think it's better than creating a "fat" Universal Binary): http://www.clintharris.net/2009/iphone-app-shared-libraries/ |
||
|
|
