ios - 长按时如何检测 selectedSegmentIndex?
<p><p>UILongPressGestureRecognizer 已添加到 UISegmentedControl。
长按时有没有办法检测 selectedSegmentIndex ?
谢谢,提前。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您是否尝试向其添加 UILongPressGestureRecognizer?在 viewDidLoad 中:</p>
<pre><code>UILongPressGestureRecognizer *longPress = [ initWithTarget:self action:@selector(longPress:)];
longPress.delegate = self;
;
</code></pre>
<p>不要忘记将 UIGestureRecognizerDelegate 添加到您的头文件中。</p>
<p>要知道按下的位置:</p>
<pre><code>- (void)longPress:(UILongPressGestureRecognizer *)gestureRecognizer {
CGPoint p = ;
}
</code></pre>
<p>然后你可以检查segmentedControl 的哪个段与CGPoint p 匹配,例如检查Y 坐标。当它从 UISegmentedControl 的中间线离开时,它是段 0,当它在该线的右边时,它是段 1。</p></p>
<p style="font-size: 20px;">关于ios - 长按时如何检测 selectedSegmentIndex?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/20607430/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/20607430/
</a>
</p>
页:
[1]