28

From what I've read about btouch; the bindings are not complete for three20.

Is there a project that provides either bindings for the Three20 app launcher or a pure MonoTouch implementation of a launcher UI element?

http://three20.info/showcase/launcher

enter image description here

detroitpro
  • 3,853
  • 4
  • 35
  • 64
  • Looks like there's at least a good start on them here: https://github.com/mono/monotouch-bindings/tree/master/Three20 – vlad259 Aug 30 '11 at 09:16
  • Here are some bindings for Nimbus. Use it instead. https://github.com/theonlylawislove/MonoTouch.Nimbus – Paul Knopf May 07 '13 at 03:37

2 Answers2

2

There are two different bindings that I have seen. I personally have used the one from GitHub to use the launcher in a MonoTouch app and it is working fine. I haven't used the one from Google Code.

Three20 Binding @ Google Code

Three20 Binding @ GitHub

BLeB
  • 1,716
  • 17
  • 24
  • 1
    Definitely use the GitHub code. It includes the new `LinkWith` assembly attributes, which make it so much easier to compile/link your monotouch probjects – Amir Nov 20 '11 at 02:29
1

Nimbus is the new open-source project from Jeff Verkoey (who brought you Three20) that is trying to minimize Three20's sprawling, lengthy build process while providing extensive documentation and feature parity. There's an awesome launcher demo available as part of the project. I don't know about bindings or MonoTouch, but it's a very nice and elegant way to present a launcher. Try it out if possible.

Once you've used Nimbus, the only reason to go back to Three20 is for a feature it doesn't yet support. It's incredibly fast to build and use in general. I highly recommend it. It's also being extensively developed, so that's a drawback if the launcher is one such item.

The link is https://github.com/jverkoey/nimbus. Hope this helped!

Dylan Gattey
  • 1,713
  • 13
  • 34
  • And here are the bindings for this wonderful library (work in progress)! https://github.com/theonlylawislove/MonoTouch.Nimbus – Paul Knopf May 07 '13 at 03:36