I am trying to develop an app with MonoTouch. For some screens I create the UI in code. I have a dynamically created RadioGroup
with normally two to four RadioElement
s (choices). Sometimes the text (dynamic too) is too long for the RadioElement
so that on an iPhone the text gets shorted by ... at the end.
I have googled and found no suggestion on how to create multiline RadioElement
s. I know you can create a MultilineElement
if you want text over several lines, but how would I go about combining the two? I assume I have to inherit from RadioElement
and override some events, but which? Is it the MonoTouch.UIKit.UITableViewCell GetCell (MonoTouch.UIKit.UITableView tv)
event?
Alternatively, how would you go about creating a MultilineElement
that get a check mark on it when it got pressed/selected?
Or should I be thinking completely different? Are there some other components that could solve this in a simpler way?