我正在開發一個應用程序,我想用UISwipeGestureRecognizer
滾動瀏覽不同的UIViewControllers
。 一切正常,但有一件事我找不到解決方案。如何從UIView中爲手勢識別器除外?
我添加了UIGestureRecognizers
這樣
- (void)viewDidLoad {
[super viewDidLoad];
UISwipeGestureRecognizer *swipeLeft = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeLeft)];
[swipeLeft setDirection:UISwipeGestureRecognizerDirectionLeft];
[self.view addGestureRecognizer:swipeLeft];
UISwipeGestureRecognizer *swipeRight = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeRight)];
[swipeRight setDirection:UISwipeGestureRecognizerDirectionRight];
[self.view addGestureRecognizer:swipeRight];
}
現在我想知道,如果有可能,除了self.view
那裏可以刷卡到不同的視圖的一部分。 我想圍繞UISwitch
這樣做。
有人可以幫我嗎?
最好的問候,
盧卡斯去
所以我不得不在UISwitch和它周圍的地方添加另一個UIView? –
你可以把你的UISwitch放在那個視圖裏 – Zalykr
好的,thnx!我會嘗試。 –