我正在尝试为我正在编码的应用程序重新加载网页。截至目前,手势正在使用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];
如何更改此设置以便我可以使用相同的手势重新加载浏览器?
提前致谢。