0

我正在尝试为我正在编码的应用程序重新加载网页。截至目前,手势正在使用UIGestureRecognizer. 我已经成功地进行了编码,这样当我刷卡时我就有了UILabel变化。我想用这个手势重新加载一个网页。目前,我的 m 文件中有类似的东西导致这种情况发生。

- (void)ScreenWasSwiped
{
    [swipe setText:@"This is working"];
}

和下viewdidload

UISwipeGestureRecognizer *swipedown = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector (ScreenWasSwiped)];
swipedown.numberOfTouchesRequired = 1;
swipedown.direction=UISwipeGestureRecognizerDirectionDown;
[self.view addGestureRecognizer:swipedown];

如何更改此设置以便我可以使用相同的手势重新加载浏览器?

提前致谢。

4

1 回答 1

0

在您的方法中调用,在您的 UIWebView 实例上ScreenWasSwiped使用调用。reload它看起来像这样:

-(void)ScreenWasSwiped
{
    [myWebView reload];
}
于 2012-04-01T20:37:17.377 回答