I have an application using the MonoTouch.Dialog Reflection API, and I have a view model with a couple of int
properties. Unfortunately, it doesn't seem like MonoTouch.Dialog have any elements supporting integer types. I would expect it to be a simple element that displays a UIPicker
with a range of numbers. I'm aware that there is a CounterElement
in the monotouch-element-pack, but it doesn't seem like it's possible to use it with the Reflection API. So the question is:
- Does an element fitting these requirements already exist?
Or if not
- Is it possible to extend the Reflection API with custom attributes for custom elements?
- Can one combine the Reflection API and the Element API?