我正在尝试创建一个自定义 UIButton,它从UIButtonType.RoundedRect
.
我添加的功能正在运行,但我的按钮的初始圆角边框状态存在问题。我的扩展按钮的边框直到被点击后才被绘制。
更新(2013 年 1 月 24 日):根据 Richard Marskell 的要求添加了红色背景测试的结果,得出的结论是仅绘制了按钮的标签。BackgroundColor = UIColor.Red;
下面是我创建自定义按钮的源代码。
public class TestView : UIView
{
public TestView(IntPtr p) : base(p) { }
public TestView(RectangleF bounds)
{
Frame = bounds;
BackgroundColor = UIColor.White;
UIButton button1 = new UIButton(UIButtonType.RoundedRect);
button1.Frame = new RectangleF(20,20,100,50);
button1.SetTitle("Button 1", UIControlState.Normal);
AddSubview(button1); // Drawn Correctly
MyButton button2 = new MyButton();
button2.Frame = new RectangleF(20,90,100,50);
button2.SetTitle("Button 2", UIControlState.Normal);
AddSubview(button2); // Only drawn correctly after Tap
// EDIT: Added to test Miguel's theory
UIButton button3 = UIButton.FromType(UIButtonType.RoundedRect);
button3.Frame = new RectangleF(20,160,100,50);
button3.SetTitle("Button 3", UIControlState.Normal);
AddSubview(button3); // Drawn Correctly
}
}
public class MyButton : UIButton
{
public MyButton() : base(UIButtonType.RoundedRect) { }
}
- 我只是不确定如何在加载视图时强制正确绘制边框。
- 我不需要 type 的按钮
UIButtonType.Custom
,因为我不想自己设置按钮的样式。 - 当我调试时,MyButton 的类型正确设置为
UIButtonType.RoundedRect
. - MyButton (button2) 的 UIButton 基本属性与 UIButton 实例 (button1) 的属性相匹配。
我该如何解决这个问题?
更新(2013 年 1 月 31 日):Herman Schoenfeld 为这个 bug 提供了合适的解决方案。