Syncfusion sfchart在Android中正常工作,但在IOS中產生錯誤。這裏是我的AppDelegate類代碼SfChart不顯示在iOS上,並在Android中正常工作 - Xamarin Forms
的AppDelegate:
namespace ProjectName
{
[Register ("AppDelegate")]
public class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
{
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
new Syncfusion.SfChart.XForms.iOS.Renderers.SfChartRenderer();
global::Xamarin.Forms.Forms.Init();
Appearance.Configure();
LoadApplication (new App());
return base.FinishedLaunching (app, options);
}
}
}
如果我刪除「新Syncfusion.SFChart.Xforms.IOS.Renderer.SfChartRenderer」從代碼它不產生任何錯誤或任何結果運行,但是當我把這行代碼,然後它拋出錯誤,這是 foundation.monotouchexception objective-c拋出異常
聽起來像是Syncfusion錯誤。我會通過他們的網站向他們報告 – user1
我已經報告過這個問題 – Hasan
等待他們的迴應。只有他們能夠修復它,因爲它很可能是源代碼中的一個錯誤 – user1