Sfpicker Datepicker is not rendering anything on iOS devices

Hi,

I'm using your default datepicker sample downloaded from here : 

https://help.syncfusion.com/xamarin/sfpicker/datepicker

I've only changed the picker mode to default to show it on the UI, its working fine in xamarin forms android but not displaying anything on any iOS devices.

Can you please help me out of this problem as soon as possible.

Thanks,
Rocky


3 Replies

VA Vinnalan Aravazhi Syncfusion Team April 20, 2018 10:17 AM UTC

Hi Rocky,

Query: Sfpicker Datepicker is not rendering anything on iOS devices

We have checked the reported issue from our side. Since SfPickerRenderer.Init(); is not included in AppDelegate picker is not displaying in iOS. Please find the DatePicker sample from below link.

Sample: http://www.syncfusion.com/downloads/support/forum/137090/ze/DatePicker1253680189 

We will modify the sample in UG and this changes will be included in our upcoming volume 1 Sp 2 release.

Regards,
Vinnalan K A.
 



SP sucharitha podduturi November 14, 2019 12:00 PM UTC

Hi, 
Even I'm facing same kind of issue .
I have implemented the picker and its working fine on android but its not working only on iOS (Its showing the blank screen on iOS)


HM Hemalatha Marikumar Syncfusion Team November 15, 2019 06:59 AM UTC

Hi Sucharitha podduturi,  
   
We would like to let you know that need to add SfPickerRenderer renderer in the AppDelegates.cs file of your Xamarin.Forms iOS project as per in below code snippet to avoid the empty view of SfPicker in iOS 
   
Code snippet [C#]:  
   
public override bool FinishedLaunching(UIApplication app, NSDictionary options)  
        {  
            global::Xamarin.Forms.Forms.Init();  
            LoadApplication(new App());  
           Syncfusion.SfPicker.XForms.iOS .SfPickerRenderer.Init();  
            return base.FinishedLaunching(app, options);  
        }  
 
Please let us know if you have any other concerns 
 
Regards, 
Hemalatha M. 


Loader.
Up arrow icon