Custom View Class
-
Hi guys, another lame question: what's the Custom View Class for?
Is it for inheriting my own derived View classes??Cheers!
-
If you have defined a custom subclass of
ui.View
in your code, you can use that text field to make a view in the UI editor be of a custom subclass instead of the defaultui.View
class. You cannot create subclasses ofui.View
in the UI editor, that is something you can only do in code.
-
All right, thanks.