Can you use MacRuby to develop applications for th

2019-03-11 17:39发布

I have some basic familiarity with Objective-C, but prefer Ruby, so I'm thinking of playing around with MacRuby. Is it possible to use MacRuby to develop applications for the Mac App Store, or do I have to use Objective-C? (Note that I don't care so much about iOS/the iPhone and iPad store right now, just the Mac OS X app store.)

4条回答
神经病院院长
2楼-- · 2019-03-11 18:03
欢心
3楼-- · 2019-03-11 18:08

Short answer: Yes, you can, technically, build such an app. You need to revisit the store guidelines to know what requirements must be met to submit to the various stores.

This comes up sporadically; beyond the guidelines that @NSResponder mentioned, the reality is that you'll just be spending a lot of extra & unnecessary time if you decide to use MacRuby unless you plan on using some large chunk of already written Ruby code in your app.

Learning Objective-C is about 2% of the overall learning needed to be an effective Cocoa developer. The other 98% is everything from memory management model to standard idioms like KVC/KVO/delegation to NIB files to the myriad of classes & APIs throughout the system.

All of those things are written in Objective-C (or C) with documentation targeting Objective-C and examples written in Objective-C.

As well, the entire tool chain is focused on validating, compiling, indexing, debugging, and manipulating Objective-C.

If you want to use MacRuby to build a real Cocoa app, you are going to have to know Objective-C through and through anyway. And you are going to have to deal with whatever bugs and impedance mismatch is in the bridge layer, too.

查看更多
We Are One
5楼-- · 2019-03-11 18:15

Yes. As the Mac developer forums says:

  1. My Mac app is not written in Objective-C. Is this allowed on the MacApp Store?

Yes, provided it also adheres to the Mac App Store Review Guidelines at http://developer.apple.com/appstore/mac/resources/approval/guidelines.htmland the Mac Developer Program License Agreement at http://developer.apple.com/programs/terms/mac/mac_program_agreement_20101020.pdf

(via alloy)

查看更多
登录 后发表回答