有人可以解释一下我如何创建一个UIButton
允许我使用 InputView / Accessory 属性(默认情况下它是只读的),就像在这篇文章中一样,但在 MonoTouch 中使用 C#
http://nomtek.com/tips-for-developers/working-with-pickers/
我已经尝试了无法编译的基础知识-
public class CustomUIButton : UIButton
{
public CustomUIButton()
{
}
public CustomUIButton(RectangleF rect): base(rect)
{
}
public override UIView InputView
{
get
{
return base.InputView;
}
[ADDED] set { base.InputView = ""; }**
}
}
谢谢