我有一个UIViewController
我放UITableView
。
是否有可能在DidSelect事件上的UITableviewCell
上获得UIView
的帧大小?
因为我想创建一个具有相同单元格大小的Label。
答案 0 :(得分:2)
您可以使用convertRect
方法在不同的坐标系之间切换。
要获取视图A,请在视图B的坐标系中调用此cell
,调用此view
,使用以下内容:
CGRect cellFrame = [view convertRect:cell.bounds fromView:cell];
这将为您提供view
内单元格的位置和大小。