UIView边框没有黑色细线

时间:2014-04-24 13:20:06

标签: c# ios uiview xamarin.ios xamarin

我试图在UIView周围绘制一个边框,但在边界周围留下一条细黑线。
我想知道是否有可能从边界移除那条细黑线...请参阅图片。

this.rssNumberView = new UIView ();
this.rssNumberView.Layer.CornerRadius = 15;
this.rssNumberView.Frame = new RectangleF (66.5f, 0, rssViewHeightAndWidth, rssViewHeightAndWidth);
this.rssNumberView.BackgroundColor = UIColor.FromRGB(35, 44, 119);
this.rssNumberView.Layer.BorderColor = UIColor.White.CGColor;
this.rssNumberView.Layer.BorderWidth = 2.0f;

enter image description here

1 个答案:

答案 0 :(得分:1)

也许你可以试试这个:

this.rssNumberView.Layer.MasksToBounds = false;