UILongPressGestureRecognizer 已添加到 UISegmentedControl。 长按时有没有办法检测 selectedSegmentIndex ? 谢谢,提前。
您是否尝试向其添加 UILongPressGestureRecognizer?在 viewDidLoad 中:
UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self actionselector(longPress];
longPress.delegate = self;
[segmentedControl addGestureRecognizer:longPress];
不要忘记将 UIGestureRecognizerDelegate 添加到您的头文件中。
要知道按下的位置:
- (void)longPressUILongPressGestureRecognizer *)gestureRecognizer {
CGPoint p = [gestureRecognizer locationInView:segmentedControl];
}
然后你可以检查segmentedControl 的哪个段与CGPoint p 匹配,例如检查Y 坐标。当它从 UISegmentedControl 的中间线离开时,它是段 0,当它在该线的右边时,它是段 1。
关于ios - 长按时如何检测 selectedSegmentIndex?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20607430/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |