美文网首页
实现按钮,奇偶数两次点击响应不同事件

实现按钮,奇偶数两次点击响应不同事件

作者: 呆呆羞 | 来源:发表于2017-06-28 14:54 被阅读0次

    实现按钮,奇偶数两次点击响应不同事件

    X%2
    X:代表代入值
    %2:代表除于2,取余数,如果存在余数就是1,如果不存在就是0
        NSUInteger  A =10;
        NSUInteger  B =11;
        NSLog(@"是否有余数=%zi",A%2);
        NSLog(@"是否有余数=%zi",B%2);
        /*
        2017-06-28 14:49:07.436 [2019:439249] 是否有余数=0
        2017-06-28 14:49:07.437 [2019:439249] 是否有余数=1
         */
    
    transformButton =[[UIButton alloc]initWithFrame:CGRectMake(200, 650, 50, 50)];
        [transformButton setBackgroundColor:[UIColor blackColor]];
        
        [transformButton setTag:10];
        [self.view addSubview:transformButton];
        
        [transformButton addTarget:self action:@selector(transform:) forControlEvents:UIControlEventTouchUpInside];
    #pragma mark=======按钮的点击事件实现
    -(void)transform:(UIButton *)button{
        NSLog(@"旧tag=%zi",button.tag);
        button.tag ++;//每次加1;
        NSLog(@"新tag=%zi",button.tag);
        if (button.tag%2==1) {
            NSLog(@"奇数点击");
        }
        else  {
            NSLog(@"偶数点击");
        }  
    }
    

    如果文章帮到您,喜欢点个赞,谢谢您。

    文章内容出错,记得留言,感激不尽。

    相关文章

      网友评论

          本文标题:实现按钮,奇偶数两次点击响应不同事件

          本文链接:https://www.haomeiwen.com/subject/hkeucxtx.html