I subclassed the EntryElement element and set the UILineBreakMode in the GetCell method as such:
public class EntryElementEnhanced : EntryElement, IElementSizing { public EntryElementEnhanced(string caption, string placeholder, string value) : base (caption, placeholder, value) {} public float GetHeight(UITableView view, NSIndexPath indexPath) { return 100.0f;
This does not seem to make the text that is entered in the cell wrapped by the word. Should I install this somewhere else?
If someone knows a better approach, then what I'm trying to accomplish at a higher level, I want to create the equivalent of UITextArea in MonoTouch.Dialog.
valdetero
source share