mobile/example/bind/ios
Burcu Dogan 99196c8691 example/bind/ios: remove the failing build step
Regenerating the package from Xcode is not required, demo
should focus on building with a .framework bundle.

Removing the genhello.bash invoking build step to fix the Xcode
builds.

Change-Id: I793b7e1f5373a287432a0a605df0bde54b1daa84
Reviewed-on: https://go-review.googlesource.com/13036
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
2015-08-01 23:05:44 +00:00
..
bind example/bind: iOS Objective-C @ xcode example 2015-07-31 20:00:56 +00:00
bind.xcodeproj example/bind/ios: remove the failing build step 2015-08-01 23:05:44 +00:00
README example/bind: iOS Objective-C @ xcode example 2015-07-31 20:00:56 +00:00

README

1. Use gomobile bind to bind the golang.org/x/mobile/example/bind/hello package.
   The following command will create a static framework bundle in the current
   directory.

  $ gomobile bind -target=ios golang.org/x/mobile/example/bind/hello

2. Open the Xcode project by double clicking on bind.xcodeproj.
   The project will not build - ViewController.m calls a function from the hello
   package so requires the hello.framework the gomobild bind command created
   in Step 1.

3. Drag-and-drop the hello.framework from the desktop to the project navigation window.
   This will automatically include the hello framework into the project.

4. Build.