开发者

Is it possible to import a Xcode framework in Monotouch?

开发者 https://www.devze.com 2023-03-27 19:26 出处:网络
Is it possible t开发者_高级运维o import a Xcode framework To Monotouch?? (if so, how can I do it??)If by import you mean being able to use the frameworks provided by iOS then YES you can be either:

Is it possible t开发者_高级运维o import a Xcode framework To Monotouch?? (if so, how can I do it??)


If by import you mean being able to use the frameworks provided by iOS then YES you can be either:

a) use what's already provided by MonoTouch - i.e. most of the API provided by Apple are already binded and provided;

b) creating the binding yourself - anything missing (e.g. new stuff) or third-parties libraries/frameworks can be bound using the btouch tool [1] (for ObjectiveC code) or using .NET p/invoke mechanism.

[1] http://ios.xamarin.com/Documentation/Binding_New_Objective-C_Types

0

精彩评论

暂无评论...
验证码 换一张
取 消