Is there a way to make a native cocoa class library in MonoTouch?

I know that MonoTouch compiles code to native machine code. Is there a way to create my own (.a) class library using MonoTouch? To be clear, I do not want to share the code between them, since I know that this is not possible.

+4
source share
1 answer

I believe that this is possible, but it will be hard work, and it is a long way from corking out of the box functionality.

For reference, check out the answers to Is there a way to mix MonoTouch and Objective-C? - this question is about how to download and then call mt from the obj-c application. I think the same approach will only work for the .a library.

0
source

All Articles