我正在尝试在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;

最佳答案

也许您可以尝试以下方法:

this.rssNumberView.Layer.MasksToBounds = false;

09-30 09:09