菜鸟教程小白 发表于 2022-12-12 16:06:23

iphone - 按住 UIButton 时,按预设的 int 值递增


                                            <p><p>我正在为一位客户工作,该客户希望他的按钮 - 按下时 - 将预设值添加到文本字段中的值,但在按住相同数量的同时增加。我一直在寻找整个下午,但我找不到可靠的答案。 </p>

<p>我正在处理他的代码,他的增量代码如下:</p>

<pre><code>-(IBAction)incrementInput1:(id)sender{
inputValue1.text= floatValue]+inc1];
note.text=@&#34; &#34;;
;
}
</code></pre>

<p>这是针对每个按钮(其中有四个)。</p>

<p>非常感谢您的阅读,如果您能提供帮助,也非常感谢:-D</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我想这会对你有所帮助。</p>

<pre><code>-(void)incrementValue:(id)sender {
   &lt;Code to increment value&gt;
}

-(void)touchesBegan:(NSSet*)toucheswithEvent:(UIEvent*)event {
    NSArray *array = ;
    UITouch *specificTouch = ;
    currentTouch = ;
    if (CGRectContainsPoint(yourUIbuttonName.bounds, currentTouch)) {
               timer = ;
    }
}

-(void)touchesEnded:(NSSet*)toucheswithEvent:(UIEvent*)event {
   if (timer != nil)
      ;
      timer = nil;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 按住 UIButton 时,按预设的 int 值递增,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/5616996/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/5616996/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 按住 UIButton 时,按预设的 int 值递增