i’m tring to extend UIButton class to add my id property.
How i can do this?
Problem is to create a button you use
var button = UIButton.FromType(UIButtonType.RoundRect);
so, if i’ve
public class MyButton : UIButton
how i can create my button?
thanks.
1 Answer