What steps will reproduce the problem?
1. Extend UILabel with a custom class
2. Register Class
3. When parsing occurs the text is not passed to the label
What is the expected output? What do you see instead?
The text in the XML should be displayed by the custom label class
What version of the product are you using? On what operating system?
0.7.6
Fix:
in UIForm at line 418, adding the following fixes the issue
if( child is TextField && !(child is UILabel))
{
(child as TextField).htmlText = line;
}
Original issue reported on code.google.com by jerome.m...@gmail.com on 30 Aug 2012 at 3:39
Original issue reported on code.google.com by
jerome.m...@gmail.com
on 30 Aug 2012 at 3:39