使用BuildUp的TinyIoC属性注入不适用于Xamarin.iOS应用程序

时间:2014-07-13 14:04:22

标签: c# ios dependency-injection xamarin tinyioc

我很难找出为什么我不能在Xamarin iOS应用中的ViewController中进行属性注入。

我的类型已注册,并且使用以下代码在我的ViewController构造函数中正确解析:

myService = TinyIoCContainer.Current.Resolve<IMyService>();

但不是手动分配所有代表,我相信我应该能够拥有TinyIoC&#34;填满&#34;我的ViewController的公共属性使用:

TinyIoCContainer.Current.BuildUp (this);

在我的ViewController的构造函数中,但是一旦我尝试运行这行代码,即使没有在我的ViewController上指定任何公共属性 - 我得到了一个stackoverflow异常,并且在此之后出现了很多错误。

谁能告诉我这里可能做错了什么?

0 个答案:

没有答案