Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I develop an iPhone application in Perl?

Tags:

ios

iphone

perl

Could someone provide a good link to book about how to develop iPhone application with the Perl programming language?

like image 698
dan Avatar asked Nov 28 '22 10:11

dan


1 Answers

Why would you want to use Perl? You'd miss out on everything the iPhone SDK gives you, and you wouldn't be in the iTunes App Store.

If you are trying to use Perl because it's the only language you know, just bite the bullet and learn Objective-C. Use the right tool for the right job. Despite how much I enjoy working in Perl, I don't think it's the answer to every problem.

However, if you did want to use the Perl route, you could use it to drive an HTML-based app. You end up installing a mini-website with local storage, etc, on the iPhone. Building iPhone Apps with HTML, CSS, and JavaScript is in O'Reilly's Open Feedback Publishing System, so you could see how to do that for free. Perl might be a tiny, server-side component of that.

like image 148
brian d foy Avatar answered Dec 17 '22 07:12

brian d foy