ios-samples/BindingSample
David Britch 168efa013e Switched to 64-bit only builds. 2018-08-07 14:13:47 +01:00
..
Screenshots Pull from upstream 2015-01-19 20:39:40 +05:30
src Switched to 64-bit only builds. 2018-08-07 14:13:47 +01:00
Makefile Pull from upstream 2015-01-19 20:39:40 +05:30
Metadata.xml Add brief description tag to metadata.xml 2015-03-23 18:03:04 +03:00
README.md Updated README of BindingSample to reflect correct architecture. 2018-06-12 12:22:54 -06:00

README.md

MonoTouch BTouch Binding Sample

This example shows how we can utilize an existing Objective-C library and expose it for use in a MonoTouch project. For instance, you may have existing code written in Objective-C that you may want to bind to C# to consume in your MonoTouch project. This sample provides a basic template/overview of the steps involved, including:

  • Creating a "fat" or multi-architecture library that can be target both the iOS simulator and device.

  • Defining an API definition file in the form of a C# interface against the Objective-C API.

  • Building a *.dll that contains both the binding and and the embedded native library.

Understanding this Sample

This sample consists of three distinct source projects:

  • Xcode Project in Objective-C
  • MonoTouch Binding classes
  • MonoTouch Sample Project

Please see the README in each project folder for more details.

Building this Sample

To compile the Xcode Project and binding classes execute the make command from the root directory.

The make command will:

  • Compile the Xcode Project for ARMv7, ARM64, and i386 (Simulator)
  • Create a multi-architecture binary using lipo
  • Create a *.dll in the binding folder using btouch-native

The resulting .dll is created using the LinkWithAttribute and will automatically embed the native library in your application.

Creating a Universal Binary

A "fat" or multi-architecture library is a compiled binary that is usable on multiple targets, for example: ARMv7, ARM64, and i386 (simulator). In this sample we illustrate how to create a universal binary in two ways:

Using lipo

Once we have built our library against the desired architectures we can create the universal binary via lipo. This will create a "universal" file from the architecture specific inputs we have provided. For instance:

lipo -create libXMBindingLibrarySample-armv7.a libXMBindingLibrarySample-arm64.a libXMBindingLibrarySample-i386.a -output 	libXMBindingLibrarySampleUniversal.a

Similarly, in our Makefile script we have lipo -create -output $@ $^ which will take the libraries compiled for ARM64, ARMv7, and i386 using xbuild and output them to the current directory with the name of our build target.

Using Xcode

In our Xcode project we have created a separate Build Target that will execute a post build Run Script to output a "universal" file.

screenshot

This Run Script is also available for reference in the "Post-Build Run Script" group of the Xcode project.