将 UITableViewCell 变成 UIView
我有一个 UITableView,在 tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
中,我希望能够访问所选单元格所在的框架。这是我的内容正在尝试:
UIView *cell = tableView.indexPathForSelectedRow;
UITableViewCell *cell = (UITableViewCell *)indexPath;
我希望能够访问所选单元格所在的视图。
提前致谢。
I have a UITableView, and in the tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
, I want to be able to access the frame that the selected cell is in. Here is what I was trying:
UIView *cell = tableView.indexPathForSelectedRow;
UITableViewCell *cell = (UITableViewCell *)indexPath;
I want to be able to access the view that the selected cell is in.
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为此,请使用:
比您可以像任何其他
UIView
即一样访问单元格上的所有信息。
cell.frame
、cell.bound
等To do this, use:
than you can access all the info on cell as you would any other
UIView
ie.
cell.frame
,cell.bound
, etc.直接访问单元格是不必要的——是的,您可以通过 -cellForRowAtIndexPath: 获取单元格及其框架,但是您必须减去 UIScrollView(UITableView 的子类)的内容偏移量) 获取单元格在表格视图边界内的实际位置。最好的方法是 UITableView 方法
-rectForRowAtIndexPath:
。Accessing the cell directly isn’t necessary—yes, you can get the cell and its frame via
-cellForRowAtIndexPath:
, but you’d then have to subtract the content offset of the UIScrollView (which UITableView subclasses from) to get the cell’s actual position within the boundaries of the table view. The best approach for this is the UITableView method-rectForRowAtIndexPath:
.