我正在使用核心圖來顯示散點圖圖,並且我想使用輕掃手勢在圖本身和圖的數據的UITableView之間切換由。。。製成由。。。做成。我的UISwipeGestureRecognizer在表視圖上工作正常,但在圖形上不會觸發滑動事件。該圖是類設置爲CPTGraphHostingView一個UIView,我的代碼如下:iOS核心圖 - 檢測圖上的輕掃手勢
UISwipeGestureRecognizer *swipeRight = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeHistoryData:)];
[swipeRight setDirection:UISwipeGestureRecognizerDirectionRight];
[graphHostingView addGestureRecognizer:swipeRight];
[tableListView addGestureRecognizer:swipeRight];
我的猜測是,CPTGraphHostingView是「吃」以某種方式重擊,使他們不受我的識別檢測。任何人都可以發表評論或讓我走上正確的道路嗎?
graphHostingView你有沒有設置用戶交互屬性? –