vote up 5 vote down star
1

I would like to develop a reusable UI control for iPhone. How should I go about doing this? When I say reusable I mean it's packaged in a dll (or whatever is used on iPhone platform) so it can be reused on multiple projects.

flag

52% accept rate

5 Answers

vote up 4 vote down check

While dynamic libraries are not allowed to be used in iPhone applications that are to be sold on the iPhone App Store, here's a tutorial on building static libraries with the iPhone SDK. (assuming you don't want to release source code)

link|flag
Thanks for this link. Exactly what I was thinking but didn't know how to do. – Alex Jan 6 '09 at 17:08
vote up 2 vote down

You probably want to provide custom Interface Builder objects, or maybe source code libraries.

link|flag
vote up 1 vote down

Well, the Xcode way would be to bundle your code into a Framework and link to that. However, under the iPhone you can't link to non Apple approved frameworks (even if they are your own)

So you would probably have to link in the source to the reusable code. A good article here

link|flag
Does this mean that something like Rhodes is not permissible: rhomobile.com/wiki/index.php?title=Rhodes – Toby Hede Jan 5 '09 at 23:39
NO it should work. From the FAQ: The iPhone development terms do not disallow interpreted languages. They disallow interpreting code that has been downloaded independent of both Apple's official distributions channels (i.e. not contained in the app bundle) and Apple's own code. – KiwiBastard Jan 5 '09 at 23:47
vote up 2 vote down

You have two options:

  1. Supply the full source code. Other developers can then add it directly to their app.
  2. Distribute the compiled version of your code as a static library.

As you're planning to develop a UI control, I suggest you also develop an IB plugin and ship that with it too.

link|flag
IB plug-ins aren't supported for iPhone development. – Chris Hanson Jan 7 '09 at 4:56
vote up 0 vote down

Can we use Ajax on iPhone?

link|flag
Yes but this is a question. Ask a question? – Jamey McElveen Feb 4 at 3:20

Your Answer

Get an OpenID
or

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