TinyIoC.TinyIoCResolutionException:无法解析类型:在ipad部署上

时间:2013-11-15 12:38:50

标签: xamarin.ios tinyioc

我得到TinyIOC无法解决类型异常。我使用Xamarin studio for ipad开发了我的应用程序。在模拟器中它工作正常。但是在部署ipad时,我遇到了错误。

  

TinyIoC.TinyIoCResolutionException:无法解析类型:IOSLoginViewModel ---> System.Exception:无法解析类型:IOSLoginViewModel ---> System.Exception:无法解析类型:

private IEnumerable<ConstructorInfo> GetTypeConstructors(Type type)
    {
        //#if NETFX_CORE
        //          return type.GetTypeInfo().DeclaredConstructors.OrderByDescending(ctor => ctor.GetParameters().Count());
        //#else
        return type.GetConstructors().OrderByDescending(ctor => ctor.GetParameters().Count());
        //#endif
    }

上面的方法是在模拟器上返回值,但对于ipad,它给出了null。

我使用的代码行是

var tContainer = TinyIoC.TinyIoCContainer.Current;
tContainer.Register<IOnlineAuthenticationService, Framework.OnlineProvider.AuthenticationService>().AsMultiInstance(); 


DataContext = TinyIoC.TinyIoCContainer.Current.Resolve<IOSLoginViewModel>();

IOS构建选项我已经尝试了所有, 链接 - SDK,ALL,No但仍然是相同的错误。

1 个答案:

答案 0 :(得分:5)

  1. 在Xamarin Studio中,打开“运行” - &gt; “异常”并添加“System.Exception”。 运行你的
  2. 运行你的应用
  3. 发生错误时,请查看异常对象的InnerException属性,该属性将为您提供无法解析类型的线索。