gpt4 book ai didi

ios - 向 UIView 添加边框不起作用

转载 作者:行者123 更新时间:2023-11-29 10:37:07 25 4
gpt4 key购买 nike

我正在尝试向自定义单元格内的 UIView 添加边框。我正在尝试:

partial class EventCell : UITableViewCell
{
public EventCell (IntPtr handle) : base (handle)
{

}

public void SetUpCell(Event eventObj)
{
title.Text = eventObj.title;
cellFooter.Layer.BorderColor = new MonoTouch.CoreGraphics.CGColor (224f, 224f, 224f);
cellFooter.Layer.BorderWidth = 5.0f;
cellFooter.Layer.MasksToBounds = true;
}
}

有什么想法吗?

最佳答案

使用 cellFooter.Layer.BorderColor = UIColor.FromRGB(224,224,224).CGColor; 而不是创建新的 CGcolor 来修复它。

关于ios - 向 UIView 添加边框不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26334858/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com