这里,A,B ... Z是带表格的自定义单元格,
如何针对CGRect
的按钮获得self.view
?我尝试使用CGRectIntersection
和CGRectUnion
方法,但它不起作用!
对于例如我需要CGRect
在self.view
答案 0 :(得分:0)
您需要两个计算步骤
对于第1步,您可以使用
[UITableView rectForRowAtIndexPath]
e.g。 CGRect rect_cell = [table_view rectForRowAtIndexPath:index_path_target_cell];
然后对于第2步,(如果您还不知道按钮与单元格原点的偏移量)
CGRect rect_button = _button.frame;
CGPoint point_answer = CGPointMake(rect_cell.origin.x + rect_button.origin.x , rect_cell.origin.y + rect_button.origin.y);