Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Could someone who programs in objective C collaborate with someone who programs in .net using monotouch on the same application?

It looks like you write your code in .net with monotouch and it stays that way.

share|improve this question
Are you asking about collaborating, or about writing a single application in Objective-C and .NET+MonoTouch? – Matt Ball Apr 8 '11 at 21:39

1 Answer

They can collaborate. The Objective-C guy would have to produce a library that you could consume from C#.

Then you would use the btouch tool to generate a C# binding that can access the Objective-C code.

This means that the main program is driven from C#.

Here is a guide on binding Objective-C APIs to expose them to C#:

http://monotouch.net/Documentation/Binding_New_Objective-C_Types

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.