zoukankan      html  css  js  c++  java
  • UISwitch 监听响应


        UISwitch *swh = [[UISwitch alloc]initWithFrame:CGRectMake(100,100, 50, 30)];
            swh.on = YES;
            [swh addTarget:self action:@selector(switchAction:) forControlEvents:UIControlEventValueChanged];
            cell.accessoryView = swh;
            cell.textLabel.text = tableArr[indexPath.section];

    //switch事件方法
    -(void)switchAction:(id)sender
    {
        UISwitch *switchButton = (UISwitch*)sender;
        BOOL btnSwh = [switchButton isOn];

        if (btnSwh) {
            UIAlertController * alertController = [UIAlertController alertControllerWithTitle: @"提示"
                                                                                      message: @"省流量模式已开启"
                                                                               preferredStyle:UIAlertControllerStyleAlert];
            
            [alertController addAction:[UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil]];
            [self presentViewController:alertController animated:YES completion:nil];
        }
    }

  • 相关阅读:
    文件操作
    匿名函数
    函数
    运算符
    (模板)扩展kmp算法(luoguP5410)
    poj2406(求字符串的周期,kmp算法next数组的应用)
    poj1961(kmp算法next数组应用)
    hdoj1711(kmp算法)
    (模板)poj3461(kmp模板题)
    fzu1704(高斯消元法解异或方程组+高精度输出)
  • 原文地址:https://www.cnblogs.com/Bo-tree/p/5161327.html
Copyright © 2011-2022 走看看