public override bool FinishedLaunching(UIApplication app, NSDictionary options) { global::Xamarin.Forms.Forms.Init(); new SfAutoCompleteRenderer(); LoadApplication(new App()); return base.FinishedLaunching(app, options); } |
Hi Thomas Bomberg,
Thanks for contacting Syncfusion Support.
We were unable to reproduce the reported issue " AutoComplete is not rendered in iOS Xamarin ". We have attached a sample to test the issue for your reference in the below location.
Link: http://www.syncfusion.com/downloads/support/forum/125528/ze/TestingSampleForms317052206
Note: Please create an instance of SfAutoCompleteRenderer in AppDelegate.cs class as per the following code example
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
global::Xamarin.Forms.Forms.Init();
new SfAutoCompleteRenderer();
LoadApplication(new App());
return base.FinishedLaunching(app, options);
}
For more information about “adding renderer” check the user documentation from the following link
Link: https://help.syncfusion.com/xamarin/sfautocomplete/getting-started
Please check the sample and if the issue still persists, update the modified sample or the replication procedure to analyze further and provide an appropriate solution
Regards,
Hemalatha M.R.
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
global::Xamarin.Forms.Forms.Init();
new SfAutoCompleteRenderer();
LoadApplication(new App());
return base.FinishedLaunching(app, options);
} |