I want to reuse iPhone source code application with other application, so in Xcode iPhone does it be able build library .jar file?
I want to reuse iPhone source code application with other application, so in Xcode
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
“.jar” is a Java archive format, so no. iPhones don’t come with a jvm. You can build libraries though.
The best way to recycle your code from one application to the next is to try to write in the most general or abstract way you can, i.e. in such a way as to minimize the dependence on any given project.