CVertex
CVertex

Reputation: 18237

JSCocoa and the iPhone

Now I have a stack of free time on my hands, I wanna get into iphone dev fo real.

But Objective C scares me (a bit). It feels I'm going a bit back in time. I say this because I've spent the last 8 months coding in C++.

JSCocoa looks awesome, but does this actually work on the iphone?

What would need to be done to get this working on the iphone?

Upvotes: 2

Views: 1217

Answers (3)

Eimantas
Eimantas

Reputation: 49364

a bit of off topic, but: You shouldn't be scared of Objective-C. Of course the syntax looks ugly at first (it did to me), but after a while you get hooked to it. And since you've spent 8 months in C++ i presume you have a good grasp of C which already lightens your weight on learning objective-c!

Upvotes: 2

dbr
dbr

Reputation: 169593

With a Jailbroken iPhone, you can deffintely write applications in Python and Ruby (and probably JSCocoa, but I've never looked into it)

The problem is, to use PyObjC/RubyObjC (and most likely JSCocoa, and any other similar projects) you have to know how to use regular ObjC and Cocoa, as the frameworks are almost direct mappings to these.

See this answer, which can be summarised by..

I'm afraid that for the time being, you will need a basic grasp of ObjC in order to benefit from any language that uses Cocoa

Upvotes: 2

Patrick Geiller
Patrick Geiller

Reputation:

(Hi, I'm the JSCocoa dev) JSCocoa works on the iPhone simulator. Check out the latest version from Google svn and compile iPhoneTest2.

To work on the iPhone, it needs libffi. I've seen http://code.google.com/p/iphone-dev/source/browse/trunk/llvm-gcc-4.0-iphone/ and some libffi posts regarding Python for iPhone, but have not tested any further.

Also I don't own an iPhone, so testing will mostly be up to someone who owns one :)

Upvotes: 7

Related Questions