Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
45
Populating IGGridViewDataSourceHelper.Data with a List > when using Xamarin
posted

I'm building an application using Xamarin for iOS and I'm trying to implement a simple data grid table.  Following along with some of the examples I tried using the  IGGridViewDataSourceHelper because it greatly simplifies handling the data for me.  Initially, I built a custom test class that inherited from NSObject.  I created a list of these objects and set them to the DataSourceHelper.Data and things worked perfectly.  Now I need to create a list of generic Dictionary<string,object> items and pass it in.  This is where the problem occurs because Dictionary does not inherit from NSObject.

 

I'm sure building a table based off a List of Dictionaries should be a pretty standard problem, so what is the work around for this issue?

Parents Reply Children
No Data