monotouch.调整单元格宽度
本文关键字:单元格 调整 monotouch | 更新日期: 2023-09-27 17:50:00
我创建了我的类MyStyledStringElement和子类StyledStringElement和IElementSizing,试图控制StyledStringElement的宽度。不幸的是,下面的代码只在getheight()中调整单元格的高度。是否有一个getWidth()方法,我可以使用或类似的东西来调整一个styledstringelement的宽度,使它看起来像一个UIButton?一如既往地提前感谢。
public override UITableViewCell GetCell (UITableView tv)
{
var cell = base.GetCell (tv);
cell.AutosizesSubviews = false;
//tv.TranslatesAutoresizingMaskIntoConstraints = false;
cell.ClipsToBounds = false;
cell.Frame.Width = 30;
cell.Bounds.Width = 30;
cell.Frame.Size = new System.Drawing.SizeF (30, 30);
return cell;
}
#region IElementSizing implementation
public float GetHeight (UITableView tableView, NSIndexPath indexPath)
{
//throw new NotImplementedException ();
tableView.Frame.Width = 10;
//tableView.Bounds.Width = 10;
tableView.Frame.Height = 10;
Console.WriteLine (tableView.ToString ());
return 10;
}
#endregion
上次我看这个时,宽度是由UITableView控制的。你最好的选择是添加一个UIButton作为UITableViewCell的子元素,并返回你需要包含按钮的高度。