我试图在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;
答案 0 :(得分:1)
也许你可以试试这个:
this.rssNumberView.Layer.MasksToBounds = false;