MonoTouch绑定:如何将框架库标记为可选链接?

时间:2013-01-01 21:58:07

标签: binding ios6 linker xamarin.ios

我正在尝试构建一个绑定项目,该项目应该可选地链接ios 6.0框架库(AdSupport,Social,Accounts)。

有没有办法在LinkWithAttribute

中将这些库标记为可选链接

1 个答案:

答案 0 :(得分:5)

只需在WeakFrameworks属性中使用Frameworks,而不是[LinkWith]。 E.g。

[LinkWith (..., Frameworks="Foundation", WeakFrameworks="AdSupport, Social, Accounts")]