I was developing app with custom Element using MonoTouch.Dialog. I did not update source code for several weeks. Yesterday I did it and realized that GetHeight for IElementSizing is not longer called. I even used new flag for root : UnevenRows but it doesn't help. I made simple test and it appears that it doesn't work even for standard Elements like MessageElement, code below presents cell with standard height 44f even if MessageElement implements GetHeight and returns 78f. Is it a bug or am I doing something wrong?
var root = new RootElement ("Test"){
new Section ("Text View"){
new MessageElement {Sender="Sender", Body="Body", Subject="Subject", Caption="Caption"}
}
};
root.UnevenRows = true;
var form = new DialogViewController (root, true);