Dave MacLachlan | 2f4d1c2 | 2016-02-03 22:29:27 +0000 | [diff] [blame] | 1 | # Objective C Examples |
Peter Schmitt | ba03d89 | 2015-03-12 15:17:21 +0000 | [diff] [blame] | 2 | |
| 3 | The example in this directory show typical use of Objective C libraries, |
Nathan Harmata | a1036d7 | 2015-06-22 15:48:35 +0000 | [diff] [blame] | 4 | binaries and imports. Because they build an iOS application they can only be run |
Peter Schmitt | ba03d89 | 2015-03-12 15:17:21 +0000 | [diff] [blame] | 5 | on Mac OSX. |
| 6 | |
| 7 | Build the top-level application with |
| 8 | `bazel build examples/objc:PrenotCalculator`, which when finished prints the |
| 9 | path to the generated .ipa. which you can then install to your test device. The |
| 10 | same build will also print the path to an Xcode project directory which you can |
| 11 | open to continue working with the application in Xcode. |
| 12 | |
| 13 | Running `bazel build examples/objc:PrenotCalculatorInstruments` will build and |
| 14 | run the application to obtain a screenshot, the path to which it then prints. |
| 15 | |
| 16 | |