gpt4 book ai didi

ios - 如果 UITableViewCell 包含 cgrect,则以编程方式选择它

转载 作者:行者123 更新时间:2023-11-29 04:06:30 25 4
gpt4 key购买 nike

我有一个 UITableView。我在桌面 View 旁边有一个像箭头一样的图像。

我必须检查箭头是否与特定单元格相交,以便我可以以编程方式选择该单元格。我该怎么做?

我在单元格/行的选择类型方面没有问题,但在检测箭头是否位于特定行上时遇到问题。

我已经编写了这段代码,但不起作用:

NSArray *paths = [tableView indexPathsForVisibleRows];

for (NSIndexPath *path in paths)
{
CGRect myRect = [tableView rectForRowAtIndexPath:indexPath];
CGRect myRect1 = CGRectMake(-12, 234, 55, 52);

if (CGRectIntersectsRect(myRect1, myRect))
{
// Also tried [tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:NO scrollPosition:UITableViewScrollPositionNone];
cell.selected = YES;
NSLog(@"\n \n \n myrect = %@ myrect1 = %@ , index = %@ \n \n ", NSStringFromCGRect(myRect),NSStringFromCGRect(myRect1), indexPath);
}
else
{
cell.selected = NO;
}
}

图像显示了我想要实现的目标,而不是现有的目标。

enter image description here enter image description here

最佳答案

好吧...对于箭头的问题...我认为表格正在返回每行的矩形,以考虑表格的框架。所以我认为你需要这样做:

for (NSIndexPath *path in paths) 
{

CGRect myRect = [tableView rectForRowAtIndexPath:indexPath];
CGRect myRect1 = CGRectMake(-12, 234, 55, 52);

myRect.origin.x += tableView.frame.origin.x;
myRect.origin.y += tableView.frame.origin.y;

if (CGRectIntersectsRect(myRect1, myRect))
{
//selection code here
}
else
{
// whatever you want
}
}

关于ios - 如果 UITableViewCell 包含 cgrect,则以编程方式选择它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15109965/

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