Data binding not working on iOS device xamarin forms
I am updating a Xamarin App it is working perfectly on Android devices, Android Simulator, and iOS simulator but Not working on iOS devices. I want to test it on the device before launching a new release on Appstore.
I am able to deploy on iOS devices.
The first issue I was facing was in NLogger returning System.NullReferenceException: 'Object reference not set to an instance of an object'
For Logging, I am following
https://martynnw.wordpress.com/2016/10/16/logging-with-nlog-in-xamarin-forms/
tried a lot to resolve the issue did not succeed. so I commented NLogger for Now and used Console.WriteLine("Error: " + ex.Message); just to track/see errors. Here I have raised a question about the NLogger issue.
https://stackoverflow.com/q/71025867/8287839
After commenting NLogger App worked it opened the landing (login) page. But data binding is not working whatever I am filling in the fields it's not being set to the model all parameters are empty. Image paths are Null, Constant variables are null. On the simulator data binding is working.
How can I resolve this? Do I need to change some kind of permissions or generate a certificate on developer.apple.com?