I am using this
UIWebview *webView = [[UIWebView alloc]initWithFrame:CGRectMake(0,0,320,self.view.frame.size.height)];
webView.delegate=self;
[webView.scrollView setScrollEnabled:YES];
webView.backgroundColor=[UIColor grayColor];
[view1 addSubview:webView];
UISwipeGestureRecognizer * Swiperight=[[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(swiperight11:)];
Swiperight.delegate=self;
[Swiperight setNumberOfTouchesRequired:1];
Swiperight.direction=UISwipeGestureRecognizerDirectionRight;
[webView addGestureRecognizer:Swiperight];
this right swipe not work but when we using this
[webView addGestureRecognizer:Swiperight]; insted of
[view1 addGestureRecognizer:Swiperight];
then it work fine ...so i want to ask Is UISwipeGestureRecognizer not work on Webview ? help me