Xamarin"尝试JIT编译方法"

时间:2014-12-30 16:52:58

标签: c# xamarin.ios xamarin

突然,我的应用程序将这些错误放在最近更新为64位支持的NuGet包中。

  

在使用Refractored.Xam.Settings.Settings:GetValueOrDefault<bool> (string,bool)运行时尝试JIT编译方法--aot-only。有关详细信息,请参阅http://docs.xamarin.com/ios/about/limitations

它阻碍了我。

这里叫它:

    public static bool RememberMeSwitch
    {
        get { return AppSettings.GetValueOrDefault(CacheKeys.RememberMeSwitch, false); }
        set { AppSettings.AddOrUpdateValue(CacheKeys.RememberMeSwitch, value); }
    }

enter image description here

1 个答案:

答案 0 :(得分:3)

我明白了。您必须在设置中启用泛型类型共享。它默认开启。我没有记录这一点,我将其添加到自述文件中:

Enable generic value type sharing