vote up 13 vote down star
7

For those of you who know/experienced both blackberry and iphone development, which platform did you prefer and why?

I'm looking for things like debugging ability, api stability, UI development, deployment, IDE, documentations etc.

flag

22% accept rate
1  
Good question. Perhaps it is worth throwing android into the mix for comparison? – frankodwyer Jan 5 at 21:24
I tried a Blackberry Storm simulator, and it couldn't even get network access without downloading a second simulator that runs in parallel... pretty off-putting right there! – Chris Lundie Jan 6 at 2:20

8 Answers

vote up 11 vote down

Most of my experience is on BlackBerry, but I've dabbled a little in iPhone development (and been involved more heavily in the non-technical side of iPhone projects).

Programming language: BlackBerry - Java, iPhone - Objective-C Advantages of Java are that it has garbage collection (as opposed to Objective-C/Cocoa's reference counting mechanism), and that it's more familiar to a lot of people. Objective-C is nice because you can drop to pure C at any time and do all the tricks you wish you could in Java

IDE: The BlackBerry JDE is terrible, but using Eclipse is much better. You do have to use Windows though, mostly because of RIM's simulator. XCode on OS X seems to be love-it or hate-it. It's definitely better than the JDE, but comparing it to Eclipse - well, long discussion there. And you'll have to use OS X (or you'll get to use OS X, depending :)

Simulator: BlackBerry is better. You can simulate more types of events (incoming phone calls, etc), and it gives you a better representation of the actual device runtime environment. The iPhone simulator is very good, but not quite at the same level.

Networking and Security: BlackBerry has a better story over end-to-end security, with the BES. Very important for enterprise apps, not really for consumer apps.

Documentation: Can't speak for iPhone too much. RIM has full Javadocs, and a developer site, but generally it's not the best, and from other Mac development there's a lot of support for Apple stuff out there.

Distribution: Apple wins this, hands down - especially if you're developing a consumer application. The App Store is the killer app for iPhone, and something that all the other manufacturers should have done long ago (they're playing catch-up now). You get tonnes of exposure and easy installation right away. If you're doing enterprise, RIM is the way to go, but you'll need a sales force for enterprise applications anyway.

In the end? Depends what kind of application you're thinking of building - for enterprise BlackBerry is still king, for consumer you can't beat the kind of exposure you'll get for very cheap on the iPhone app store.

link|flag
I find the Blackberry simulator rubbish. 2 minutes startup time. You have to start it up everytime you build your app!? iPhone simulator starts instantly. Dev time is what matters. – Max Howell Feb 27 at 18:49
1  
... and now Blackberry has an AppStore as well! Also, you can run the RIM Simulator on Linux via Wine and it's just fine after some initial configuration. – Mat Nadrofsky Apr 6 at 17:59
vote up 5 vote down

I've done both. The Interface Builder alone would be enough reason to go iPhone rather than Blackberry.

The fact that you can reuse iPhone knowledge back and forth with Macs is another; Blackberry development, if you want a decent app, is only reuseable for other Blackberry apps (you need native APIs to look useful at all).

link|flag
I have heard with berries, UI dev is a pain? – Blankman Jan 5 at 21:41
Yes, it is no fun. Unless tools have drastically improved recently, the UI dev is all manual and occasionally buggy across differing blackberries or OS versions... – Richard Campbell Jan 5 at 21:43
vote up 4 vote down

I prefer the iPhone SDK, mostly because I really enjoy Apple's APIs, but also because there's a much larger user base. Objective-C is a pretty nice language as well, and Cocoa is pretty much beautiful.

There are some pretty cool remote debuggers for the iPhone, and as for UI, Cocoa is amazing.

The Blackberry is a nice development platform as well, but everything just seems more clean with the iPhone.

link|flag
vote up 2 vote down

Blackberry is based on J2ME, which is an old tech (I was doing J2ME in 2002), and suffers from platform fragmentation (devices which don't conform to the spec 100%).

iPhone SDK is newer, much more powerful (CoreAnimation anyone?) and is a very hot space right now. The tools are good, the phone is a joy to use, and while the API is maddeningly poorly documented in places (code examples in docs please Apple?) it is still light years ahead of the competition. Apple also has the App store which isn't controlled by the carrier, which is nice.

BlackBerry does have some cool stuff in their APIs, like SMS/MMS listeners, but I tend to believe those are wonky telco protocols which will wither and die soon, and I'm not missing them on the iPhone.

link|flag
vote up 1 vote down

iPhone over blackberry for me. I have developed for both and find the cocoa-touch API more civilized/powerful than any of the several (surprisingly incompatible) blackberry sdks. Factor in Interface builders powerful UI tools and the rest is candy.

link|flag
vote up 1 vote down

I was looking into iPhone development, but if I understand correctly the only way to get an app on an actual iPhone is to deploy it through the app store. This pretty much took the wind out of my sails.

link|flag
not true, you just need to purchase the enterprise license to deploy on your iPhone. You can get it here: developer.apple.com/iphone – Joe Estes May 21 at 2:29
$299 is kinda steep. – Richard May 22 at 1:05
vote up 0 vote down

I've developed a couple of Blackberry apps. Somebody mentioned Eclipse (of which I am a big fan) but I should mention that NetBeans has a very nice visual GUI editor that makes it very nice to develop J2ME apps.

Also, I'm surprised nobody here has mentioned the fact that (to the best of my knowledge) you need to have a Mac in order to develop iPhone apps. That is kind of a big deal for any casual development project.

link|flag
vote up 0 vote down

I was about to say what Michael Tiller has mentioned. Originally, I learned iPhone programming way before getting into BlackBerry development. I won't say that iPhone SDK sucks or its not good. Its amazing. And xCode is a gorgeous IDE. Below are my reasons why I don't want to iPhone way:

  1. I hate the way Apple thinks. You have to buy Apple in order to anything. It is so proprietary.
  2. Can't spend money on buying Mac.
  3. Even if I buy Mac, the maintenance and repairing cost is so high (something to keep in mind for future).

I am a big fan of Eclipse and have spend time resolving Eclipse bugs. It's an amazing IDE.Even though I am not 100% satisfied the way things are working on Eclipse - I strongly believe that RIM will spend heavily in this area.

The BlackBerry documentation is far more better than Apple. One of the most important reason of going BlackBerry way is - JAVA. In the case of errors/crashes - you can find the solution buy just googling it. I can guarantee that googling for iPhone problems/errors won't pull enough indexes.

Hope this will help others : 0)

link|flag
You can use VMware server and install OS X instead of buying a Mac to do iPhone development. It's still absurd that you have to go through those hoops, but that's Apple. – Neil Sep 12 at 2:44

Your Answer

Get an OpenID
or

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