Ways to prevent two buttons from being clicked simultaneously in iOS

Source: Internet
Author: User

In iOS development often encounter, two close to the button, accidentally two buttons simultaneously clicked.

The Magic Bug is generated, if the two button events are jump pages, there will be a jump two page situation.

A common workaround for this problem is to define a baseviewcontroller.

Set a method setexclusivetouchforbuttons: (UIView *) MyView

-(void) Setexclusivetouchforbuttons: (UIView *) MyView

{

for (UIView * v in [MyView Subviews])

{ if ([v iskindofclass:[UIButton class]])

{

[((UIButton *) v) Setexclusivetouch:YES];

} Else if ([v iskindofclass:[UIView class]])

           {

[Selfsetexclusivetouchforbuttons:v];

}

}

}

The secondary method is then called in Viewdiddisappear.

< Span class= "Hljs-keyword" >< Span class= "Hljs-keyword" >-( Span class= "Hljs-keyword" >void) Viewdiddisappear: (bool) animated

< Span class= "Hljs-keyword" >< Span class= "Hljs-keyword" >< Span class= "Hljs-keyword" >{

< Span class= "Hljs-keyword" >< Span class= "Hljs-keyword" >< Span class= "Hljs-keyword" >      [self Setexclusivetouchforbuttons:self.view];

< Span class= "Hljs-keyword" >< Span class= "Hljs-keyword" >< Span class= "Hljs-keyword" >< Span class= "hljs-variable" >

All viewcontroller inherit this baseviewcontroller, or you can use the run-time override Viewdiddisappear to

Ways to prevent two buttons from being clicked simultaneously in iOS

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.