我正在开发一个应用程序,我的任务是从我创建滚动视图并将图像放在滚动条上的数据库中获取 url 链接。
我已经编写了一些代码,当我单击图像时,我必须在我放置在滚动视图上方的 web 视图中显示 url 页面。
为此,我编写了用于在单击图像时获取 url 的触摸代码,但我遇到了问题,例如我的单击不适用于图像和滚动视图,但它正在处理图像的下部和滚动视图,这是一个普通视图。你可以在下面找到我的触摸码
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch * touch = [[event allTouches] anyObject];
for(int index=0;index<[array count];index++)
{
UIImageView *imgView = [array objectAtIndex:index];
if(CGRectContainsPoint([imgView frame], [touch locationInView:scrollView]))
{
NSString *strgetcontenturl = [[NSString alloc]initWithString:[arrayvideoFile objectAtIndex:index]];
NSURL *url = [NSURL URLWithString:strgetcontenturl];
[webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:strgetcontenturl]]];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[webview loadRequest:requestObj];
}}}
这里array是我存储所有图像 init 的地方,而arrayvideoFile是我存储所有 url 的地方。
请帮忙。