获取用户点击的索引

获取用户点击的索引

我想获取用户点击的索引。我尝试了几种方法来检测它,但没有一个起作用。
这是我尝试过的。

   func carousel(carousel: iCarousel, didSelectItemAtIndex index: Int) {
        print("this has been tapped from Carousel \(index)")
    }

    func carouselCurrentItemIndexDidChange(carousel: iCarousel) {
        let index=carousel.currentItemIndex
        print("this is current index \(index) ")
    }

    func carousel(carousel: iCarousel, viewForItemAtIndex index: Int, reusingView view: UIView?) -> UIView {
        let webV:WKWebView!
        webV = WKWebView(frame: CGRectMake(10, 10, 250, 250))
        if let updatedResource = myDict[index+1]{//name of resource I want to load
            let url =  NSBundle.mainBundle().URLForResource(updatedResource, withExtension: "html")
            let requestObj = NSURLRequest(URL: url!);
            webV.loadRequest(requestObj);
            let tapGesture = UITapGestureRecognizer(target: self , action: Selector("tapDetected"))
            //tapGesture.numberOfTapsRequired = 2
            tapGesture.enabled = true
            webV.userInteractionEnabled = true
            webV.addGestureRecognizer(tapGesture)

           // setUserInteractionEnabled = true
            print("this has been rendered \(index)")
          }
        return webV

    }

    func tapDetected(sender:UISwipeGestureRecognizer) {
        print("yes tap has been detected :)")

最佳答案

由于我使用的是Objective-C,因此可能无济于事,但是在

- (void)didTap:(UITapGestureRecognizer *)tapGesture


方法。

 [_delegate carousel:self didSelectItemAtIndex:index];
 NSLog(@"Selected app at index: %d", index);


可以正常工作。我正在使用iCarousel 1.8.2版

关于ios - iCarousel获取用户点击的索引,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38327842/

10-11 03:43