Hello,
I'd like to call a method on my custom renderer, what do you think is the best way to achieve that?
public class MyLabelRenderer : LabelRenderer
{
public void DoStuff(){}
}
public class MyLabel : Label
{
public void DoStuff(){
// TODO: How to signal the custom renderer to invoke DoStuff() ?
}
}