Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I'm looking into iPhone development, and Objective-C is not be my preferred language. As far as I can see at this moment Ruby cannot be used to talk to Cocoa Touch at the moment on the iPhone.

So my question is, am I wrong? Can I use Ruby on the iPhone to develop Cocoa Touch applications. And what is the future looking like for Ruby on the iPhone?

share|improve this question
3  
Apple just relaxed the restrictions on dev tools for apps in the App store: apple.com/pr/library/2010/09/09statement.html – Kjetil Ødegaard Sep 9 '10 at 18:57
Hi, 3+ years later & there's a new movement which is attempting to get Apple to provide MacRuby for iOS :) Read more about it here - welovemacruby.com & please make sure you file that bug report :) – gef Dec 6 '11 at 20:59
Good to see, I presume Apple is considering MacRuby internally – Brian Heylin Dec 7 '11 at 16:47

18 Answers

up vote 19 down vote accepted

No, you are correct. Currently, and most likely for the foreseeable future, Ruby will not be an option, at least for AppStore applications. There's no reason you couldn't do this on a Jailbroken phone, but Apple is pretty wed to Objective C for official development.

share|improve this answer
8  
Why make Ruby a first class citizen in Mac but not iPhone? – never_had_a_name Aug 22 '10 at 23:07
3  
@never_had_a_name performance – rightfold Apr 4 '11 at 15:00
3  
As of early May 2012, you can. See rubymotion.com – RobZolkos May 6 '12 at 5:10

Now you can with RubyMotion

share|improve this answer
This should very quickly float to the top. – user94154 May 4 '12 at 15:31
Awesome! I will try this out right now. – Anders Hansson May 14 '12 at 13:36
FYI, RubyMotion is a paid product. – ashes999 May 28 '12 at 14:36

In the iPhone OS, mprotect() will fail if you try to use it to mark writable sections of memory as executable. This breaks bridges like RubyCocoa (and probably MacRuby) that use libffi to create Objective-C method handlers at runtime. I believe that this is by design because it was not always the case.

Ultimately, this is more a matter of platform politics than technology, but a technical workaround for this exists. Instead of generating custom method handlers at runtime, precompile a pool of reconfigurable ones that are assigned as needed, essentially making the bridging process entirely data-driven. As far as I know, this is not yet being done in RubyCocoa or MacRuby.

Another significant thing to consider is that the compiled Ruby and RubyCocoa runtimes can be significantly larger than compiled Objective-C apps. If these libraries were available on the iPhone, this wouldn't be an issue, but for now, even if you had RubyCocoa working, you might not want to use it for apps that you distribute.

share|improve this answer

You are better off as a programmer knowing a number of different languages - think of Objective-C as a good learning opportunity.

I've found that things you learn in other languages often make you a better programmer overall, and give you new insights into other languages you already know.

share|improve this answer
3  
I totally agree on learning new languages, as it's something I enjoy a lot. To be honest I'm not looking forward to returning to C style languages, as I find C to be overly cryptic for application level programming. Objective-C is certainly more usable than C++ though, so I can be thankful for that – Brian Heylin Oct 22 '08 at 7:13
4  
The language is not the only reason I prefer one language over another -- I continue to make significant investment in libraries and tools. Not having these libraries available significantly impacts development time. – Shane Holloway Feb 28 '10 at 4:30
3  
Although I totally agree, this is an advice, not an answer. – edgerunner Jul 23 '11 at 9:04
1  
It is an answer in that I think it's wrong to develop using the non-native language even if it works. Sometimes it's better to answer the question they didn't ask but should have. – Kendall Helmstetter Gelner Jul 23 '11 at 16:05
This would make a good comment, but it does not answer the question. – iconoclast Jul 19 '12 at 1:13
show 3 more comments

rhomobile is an option to run ruby code on the iPhone, but it's essentially web app development. A web server runs locally on the iPhone and your ruby code renders to standard client side web technologies (html/css/javascript).

http://rhomobile.com/

share|improve this answer

Actually, the ruby cocoa bridge isn't awkward at all; things work remarkably smoothly, right down to connecting outlets in IB etc. The resulting code is down right beautiful.

As for iPhone development, if you want an official AppStore application, you're out of luck unfortunately. Apple dictated that iPhone is Obj-C/Cocoa Touch, and there's a clause in the SDK license saying that one of the things they will reject an app for is having a language interpreter/JIT compiler, so you couldn't add a ruby interpreter in your app yourself.

Off topic, but hilariously, this is why Flash for the iPhone is Adobe blowing smoke. They couldn't get a swf player onto the AppStore even if they wanted to, per Apple's license.

share|improve this answer
4  
Flash for iPhone can still happen if Apple license it. The agreement allows for explicit licensing, it just provides a barrier for any old interpreter being installed. – Andy Dent Jan 27 '09 at 2:54
I don't think they will reject the app. The app simply won't run. The OS will not execute instructions off the memory heap. – jrwren Jun 7 '11 at 14:19

Uh, Rhodes (Rhomobile) does allow you to do native apps on the iPhone and all other smartphones. Yes, we do leverage doing rendering via the WebUIView control. But we allow all device capabilities and synchronized local data.

share|improve this answer

You might want to take a look at shinycocos. It is a child project of cocos2d-iphone, an Objective-C game programming framework for iPhone.

I haven't yet played with it, but from the git README I infer that it bundles Ruby 1.9.1 into your app.

share|improve this answer
I looked at shinycocos too sometime ago, I couldn't get it installed so I switched to obj-c to learn it... but they're developing real games with it... and in ruby!!! so it definately worths a try!! – makevoid Mar 17 '10 at 22:34

I installed the ruby package from Cydia on my iPod Touch 1G jailbroken on 3.1.3:

image

Seems to work.

Now as for cocoa-touch that is a whole different story I would assume.

share|improve this answer
I see some more downvotes for this post now, this post is obviously going to need to be updated as it is almost 3 years. I'm sure there is still a way to run ruby in very much the same way and I'd be surprised if the ruby Cydia package isn't still there. – Steven Lu Mar 12 at 19:25

Take a look at http://www.appcelerator.com/products/titanium-mobile/ "Native iPhone and Android apps built with Web technologies."

Sounds good isn't it ? ;-)

share|improve this answer

I imagine it won't work right now, but I'd imagine that you'll eventually be able to use MacRuby to build iphone apps. Apple are putting a lot of work into it

Here's a link to an ADC article describing how to build normal cocoa apps

share|improve this answer

You don't have to use Objective-C to write iPhone apps. If you use QuickConnectiPhone, http://sourceforge.net/projects/quickconnect/, you can write it completely in JavaScript, CSS, and HTML and still have an installable application not a web app.

If you know ruby you are probably working with JavaScript already.

To see how to install it, run it, and other ideas go to tetontech.wordpress.com

share|improve this answer

There's an open-source Ruby-Cocoa bridge you might try to get working. But I gather that there's a bit of an impedance mismatch between Ruby and ObjC that makes it a bit awkward to use.

share|improve this answer
1  
this answer has nothing to do with the legal and technical barriers to running Ruby on the iPhone – Andy Dent Jan 27 '09 at 2:53
this is not for iphone, RubyCocoa is not CocoaTouch – David Karlsson 2 days ago

The Ruby Cocoa bridge probably will not work. Most of the bridges for dynamic languages need to generate executable thunks (either manually or with libffi). More limited bridges (for more static languages) may not have such issues.

In either event, bringing up a bridge is probably going to require becoming more familiar with the Objective C runtime than one would just learning how to write Cocoa Touch apps, which probably defeats the point of doing it in the first place.

share|improve this answer

Currently isnt true, Apple change their policies, take a look at ShinyCocos, is a ruby bindings for the Cocos2D-iphone game framework.

https://github.com/funkaster/shinycocos

share|improve this answer

I guess this is coming a bit late, but still I will leave it here if anyone finds this topic again.

MonoTouch was launched recently and provides an alternative way to develop iphone apps (c# / mono).

http://monotouch.net/

Warning : Commercial Paid "Application".

share|improve this answer
Don't forget that Iron Ruby is a .NET language, meaning you can develop your iPhone apps with Rubs if using MonoTouch – MKing Sep 15 '09 at 19:16
Sorry, I meant with Ruby, not Rubs. Rubs is not a development platform (that I am aware of). – MKing Sep 15 '09 at 19:17
3  
Properly administered rubs can significantly hinder your development efforts. – mmc Sep 15 '09 at 20:00
I don't think monotouch does work with Ruby actually, because ruby is a dynamic language, and monotouch statically compiles the code. See here monotouch.net/Documentation/Limitations for the limitations of monotouch. – Dave Arkell Sep 25 '09 at 8:51
From what I managed to understand, at least currently, you can't develop on Iron Ruby for the iphone – Tiago Oct 1 '09 at 10:24
show 1 more comment

One possible solution would be to create an application wrapping for example the rice library (google it) which includes a ruby-vm. I reckon you would be able to create c++ wrappers that you could expose to ruby, thus making an environment for iphone development with ruby. This probably requires a lot of work though ^^

share|improve this answer

Laurent Sansonetti, a senior engineer at Apple, tweeted this teaser on Sept. 12, 2010: "Yes, we have been working on it. Wait & see :)"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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