Need Help with List View: Cant find SfListViewRenderer

As part of the initial documentation for SfListView it says you have to put this code in the iOS app delegate:

  global::Xamarin.Forms.Forms.Init();
            SfListViewRenderer.Init();
            LoadApplication(new App());
            return true;
 

I keep getting SfListViewRenderer does not exist in the current context. 

What reference/declaration am I missing here. 

1 Reply

MK Muthu Kumaran Gnanavinayagam Syncfusion Team February 12, 2018 04:22 AM UTC

Hi Ali Husain, 
 
We have checked the reported query at our end. We suspect that the SfListView assemblies has not been added properly in your renderer projects. 
 
You can refer the below documentation link to know about the list of assemblies need to be added as reference for SfListView. 
 
 
If you have added all the necessary assemblies in your renderer projects, then make sure to use the below using directives in your AppDelegate class of your iOS renderer project to initialize the SfListView renderers. 
 
C# 
using Syncfusion.ListView.XForms.iOS; 
 
 
Please let us know if you require further assistance. 
 
Regards, 
G.Muthu kumaran. 


Loader.
Up arrow icon