iCarousel获取用户点击索引

时间:2016-07-12 11:38:23

标签: ios swift icarousel

我想获取用户点击过的索引。我已经尝试了几种方法来检测它,但没有一种方法可以正常工作。 这是我尝试过的。

   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 :)")

1 个答案:

答案 0 :(得分:0)

可能没有帮助,因为我使用了Objective-C但是在

中检测到了点按
- (void)didTap:(UITapGestureRecognizer *)tapGesture 

方法。

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

按预期工作。我使用iCarousel版本1.8.2