2
votes
1answer
33 views

Linking failure with a MonoTouch native library binding

I am creating native library binding for the Wikitude SDK. The MonoTouch app fails linking: Undefined symbols for architecture armv7: "std::__1::basic_string, std::__1::allocator ...
0
votes
1answer
31 views

Can't load wikitude monotouch binding

The monotouch binding that I created for the Wikitude SDK framework does not work at run time. I created my binding by following these instructions: http://stackoverflow.com/a/13070064/42826. When I ...
3
votes
1answer
67 views

MvvMCross Binding with format string

How can i add a format for a binding, that formats the bound value with string.Format or something similar? I saw in other threads, that you can pass a converterName. Does a converter for this ...
0
votes
1answer
35 views

Binding problems with using Selector and Messaging in Monotouch

I've been trying to reproduce this Animate a view zoom-bouncing in? in Monotouch but I hit an exception and I don't know what to do... these statics methods are in a utility class. An exception is ...
1
vote
1answer
62 views

ASIHTTPRequest Monotouch Binding Callback/Event

I am trying to wrap ASIHTTPRequest objective-c library to monotouch and I am stuck on . The objective-c header file contains @property (assign) SEL requestDidFinishSelector; and when I use monotouch ...
3
votes
1answer
135 views

“The native class hasn't been loading” error with my bindings

I'm trying to create bindings for GPUImage project, but none of binded classes is working. For example, GPUImageView: In ObjC it's declared like this (header in git): @interface GPUImageView : ...
0
votes
0answers
93 views

Need help creating a callable wrapper binding for StackMob on Xamarin

In a nutshell I am trying to bind the StackMob Android and IOS SDK and I am running into an issue trying to resolve a class (com.google.gson.internal.bind.TypeAdapters & EnumTypeAdapter) that ...
0
votes
2answers
56 views

Binding #define used as constant

The code I am trying to bind puts a very important key in one of the .h files: #define xAppKey @"REPLACE_WITH_YOUR_APP_KEY" This value is then reused throughout the ObjC code. I am suspicious that ...
0
votes
1answer
74 views

binding and ios library in monotouch, duplicate symbols error

I am trying to bind a native iOS library in my monotouch application but I keep getting this error: duplicate symbol _timeoutReached3 in: ...
1
vote
2answers
150 views

Creating MonoTouch binding with an Objective-C framework

I have a library in Objective-C that i want to bind to in monotouch (xamarin studio). This library is using a framework ('Firebase' framework), that I downloaded from a third party vendor. I compiled ...
0
votes
1answer
216 views

Target pattern contains no '%'. Makefile

I have searched this problem in google, but still don't have some way to resolve a problem. I have 2 Makefiles: One as example and one as my file. Example: BINDDIR=/src/binding ...
2
votes
1answer
70 views

How can bind property block monotouch

I'm learning how to bind objective c to monotouch and I'm having trouble with a property that is a block @property (nonatomic, copy) void (^onLongPress)(UIView*, NSInteger); I have this at the ...
1
vote
1answer
181 views

MonoTouch Binding Project Native linking failed. MT5202

I have the following error from the build output when using a library I have linked through a MonoTouch linking project. Undefined symbols for architecture armv7: The header file is as follows (Left ...
1
vote
1answer
62 views

ZBarMonotouchBinding Error When Returning Symbol Data

I'm using v2 of the ZBarMonotouchBinding that I downloaded from here on sourceforge. This version didn't come with a libzbar.a file, so I'm using the libzbar.a file from v1 of the binding (which may ...
1
vote
1answer
98 views

MonoTouch binding notifications in 3rd party library

I am working to create bindings for IDTech CC swipers. I have been banging my head against this for a while. I am stuck on how to subscribe to events that are raised by the 3rd party library. ...
2
votes
1answer
73 views

Generated binding events crash MonoTouch

I have a binding for Bluetooth BLE device with the following binding: [BaseType (typeof (CBPeripheralDelegate), Delegates=new string [] {"WeakDelegate"}, Events=new Type [] { typeof (BrspDelegate) ...
6
votes
2answers
311 views

Is it possible to add C references to an objective c binding?

There are some C style functions in an Objective C library I'm binding to that I need access to in my application. Is it possible to add these into the bindings in any way so I can access them in my ...
3
votes
1answer
116 views

Monotouch OpenGL Types And Cocos2d

I've been playing around with Monotouch recently, deciding if it will be good for my project. I need Cocos2d for it and was using the bindings found here: https://github.com/mono/monotouch-bindings ...
0
votes
1answer
115 views

MonoTouch custom Binding is not working for some methods in Delegate

I have the following protocol to a native library for which I'm attempting to write a MonoTouch binding for (it also has an interface part called Brsp). @protocol BrspDelegate <NSObject> ...
5
votes
1answer
88 views

MonoTouch binding: How to mark framework library as optionally-linked?

I am trying to build a binding project that should optionally link ios 6.0 framework libraries (AdSupport, Social, Accounts). Is there any way to mark those libraries as optionally-linked in ...
3
votes
1answer
86 views

How to bind Obj-C #define UMLOG_ERROR @“[UM Error] ” with MonoTouch

Im new in MonoTouch. I am currently trying to bind an Objective-C library into MonoTouch, so far I've done much of the work, however, i don't know how to bind the following code : static inline ...
1
vote
1answer
86 views

MonoTouch CorePlot 1.1 binding error

The monotouch bindings for CorePlot are stuck to version 0.9, while the library has now reached version 1.1: I'm trying to update the makefile by myself, but it doesn't work. I've changed the ...
0
votes
1answer
180 views

Monotouch binding - “Cannot cast from source type to destination type.”

I am a newbie on Monotouch. Recently, I am working on a Monotouch binding project that binds a custom iOS framework that developed myself into a .NET framework library. I follow the instructions on ...
3
votes
2answers
146 views

Monotouch binding ObjC library

I have an error while building fat binary: ld: symbol(s) not found for architecture i386 (or arm7 for device) collect2: ld returned 1 exit status error MT5202: Native linking failed. Please review ...
3
votes
2answers
143 views

Binding to 3rd-party library in Monotouch - mapping uint8_t * and uint8_t **

I am attempting to bind to a 3rd-party barcode scanning library using monotouch - everything is working well so far except the following method, as defined in the library header file: /** * Main ...
1
vote
0answers
128 views

Monotouch binding issue after updating to xcode 4.5

I had previously managed to get a test program in MonoTouch working with the Nuance SpeechKit by following the steps detailed in this post. I have since updated everything to the latest and greatest ...
2
votes
2answers
113 views

Binding a static global causes error in MonoTouch

I started with a functioning bindings project, but I needed to add a global int for a status flag and I can't get it to bind without error. I started with the sample code and can't get this to work. ...
0
votes
1answer
167 views

Monotouch binding

I'm trying to bind BugSense to Monotouch. But I have some problems, and now I will hear if someone here will check my bindings? The BugSense Header look like this: #define BUGSENSE_LOG(__EXCEPTION, ...
2
votes
2answers
370 views

Monotouch Binding to Linea Pro SDK

I'm trying to create a binding to the Linea Pro (it's the barcode scanner they use in the Apple Stores, Lowes) SDK. I'm using David Sandor's bindings as a reference, but the SDK has been updated a ...
1
vote
1answer
103 views

MonoTouch missing members?

I'm just converting an objc video player sample to MonoTouch and came to this part: self.view.layer.sublayerTransform = CATransform3DMakePerspective(1000); In Monotouch, I can do a 'scale' or ...
0
votes
2answers
92 views

Binding a project in Monotouch that uses a c library (dns_sd.h)

I've attempted to write a binding project for this project: https://github.com/tolo/HHServices The Project uses the lower level C class : dns_sd.h. I dont know how to import this into my binding ...
1
vote
2answers
317 views

Binding MonoTouch NSObject Categories

How can I bind this using MonoTouch?? #if __IPHONE_OS_VERSION_MAX_ALLOWED < 60000 @interface NSObject (SubscriptingSupport) - (id)objectAtIndexedSubscript:(NSUInteger)idx; - ...
0
votes
0answers
362 views

Bugsense binding to Monotouch

I am trying to use Bugsense in my monotouch solution. I have created a "Monotouch Binding Project" and added the file "BugSense-iOS" to the solution. I added the extension .a to the file, when it ...
1
vote
1answer
107 views

wrapping const char* in Monotouch

I had some issues using some classes from a Monotouch wrapped Dll. Some of the methods have parameters of type (const char*) in Objective-C which I translated to string when creating the wrapper. ...
2
votes
2answers
378 views

ClassHandle of Wrapped Monotouch class returns null

I am wrapping an Objective-c library in Monotouch. The problem is that, after generating the DLL using btouch, and when I try to use some the classes from the DLL in a sample application, the ...
2
votes
1answer
108 views

Can't marshal a structure from an unmanged library to managed code in monotouch

I have the following structure that is defined in a header file for a library that a vendor has given to us. typedef struct { int iLen; int iType; int state; unsigned char ...
1
vote
1answer
88 views

Monotouch spotify binding

I'm trying to bind the spotify api to monotouch. But can't seem to get it working, and i think i'm a little in over my head ;). What i tried: I extracted the libspotify.a from the ios ...
1
vote
1answer
207 views

MonoTouch - Conflict between 2 binding Projects

I'm wanting to use two Objective-C libraries in a MonoTouch app: the Facebook library and an ad library from Millennial Media. When I try to compile my MonoTouch app (even just for the simulator), I ...
0
votes
1answer
241 views

Monotouch Objective C API Binding

I am currently working on a MonoTouch project and needed to add in an Objective C API for use with a card reader. I am having some difficulty understanding the basics of getting the binding working ...
1
vote
1answer
160 views

How to add CoreData Model File .momd into MonoTouch project

The MonoTouch solution includes two projects. MonoTouch Binding Project: API Contract interfaces for linked native ObjC library Test Client Application The native ObjC library requires to include ...
3
votes
2answers
451 views

Binding of Zebra SDK to Monotouch?

I'm working on an iPad app in Monotouch (5.2.12). The app will be used with Zebra's mobile printers, so we got SDK from them (.a library and headers). So I went to read all the guides and tutorials ...
1
vote
1answer
386 views

MonoTouch MVVMCross binding to instance variables

This probably sounds really stupid, but I just can't get a binding to an instance variable (of type string) to work. In my view's xib, I create a text field as an outlet in IB, then I can bind it to ...
3
votes
1answer
420 views

Possible bundle problems - Cannot create an NSPersistentStoreCoordinator with a nil model

I want to integrate the Aviary SDK Objective-C library into Monotouch project. I use 'Monotouch Binding Project' template for this. I have built the DLL (Thanks smart people!) The project is compiled ...
2
votes
1answer
424 views

How to add the libsqlite3.0.dylib in MonoTouch Binding Project?

I want to integrate the Aviary SDK Objective-C library into Monotouch project. I use 'Monotouch Binding Project' template for this. So I have created the API Definition file and define LinkWith ...
1
vote
1answer
132 views

Downcasting a class without adding a new constructor

Good day, I am trying to create a binding for (ObjectiveC) @interface GPUImageView : UIView <GPUImageInput> { GPUImageRotationMode inputRotation; } by writing this in ApiDefinitions.cs ...
2
votes
2answers
257 views

What is the Monotouch/C# equivalent of id<SomeType> in ObjectiveC?

Good day, I have: ObjectiveC: - (void)addTarget:(id<GPUImageInput>)newTarget; C#: [BaseType (typeof(NSObject))] interface GPUImageOutput{ [Export ("addTarget")] void ...
4
votes
1answer
238 views

Monotouch binding syntax for blocks

Good day, I am trying to add a binding for this in Monotouch: - (void)capturePhotoAsImageProcessedUpToFilter:(GPUImageOutput<GPUImageInput> *)finalFilterInChain withCompletionHandler:(void ...
1
vote
2answers
208 views

How do I create a MonoTouch Binding for a (^Something) block?

Basically, I'm trying to create a binding for a property that is a block. It shows how to do this in the MonoTouch Documentation, but not for this specific case. Here's the property Im trying to ...
2
votes
3answers
743 views

How to create a MonoTouch binding from a .framework

I downloaded TouchDB, a "lightweight Apache CouchDB-compatible database engine suitable for embedding into mobile or desktop apps", which gives me a bunch of .framework folders (CouchCocoa.framework, ...
0
votes
1answer
285 views

Monotouch Facebook Binding Publish to Wall crash

I downloaded and build the facebook-binding from https://github.com/mono/monotouch-bindings The authentication works, but when I try to post something to my wall I get native crashes. After the "Post ...

1 2