Category / Section
How to resolve SfImageEditor not rendering issue in Xamarin.Forms.iOS
3 mins read
Description:
Xamarin does not load the renderer assemblies by default in Xamarin.Forms.iOS project. So in order to solve this, you have to manually load it by creating an instance of SfImageEditorRenderer class in the respective projects as mentioned below.
iOS Project
Create an instance of SfImageEditorRenderer in FinishedLaunching overridden method of AppDelegate class in iOS Project as shown below,
C#:
public override bool FinishedLaunching(UIApplication app, NSDictionary options) { ... Syncfusion.SfImageEditor.XForms.iOS.SfImageEditorRenderer.Init(); ... }