美文网首页
ios-UISwitch常用属性设置

ios-UISwitch常用属性设置

作者: IMKel | 来源:发表于2016-12-07 18:51 被阅读481次
    • UISwitch常用属性使用如下(未完,待补充......)
    // 设置switch开关默认为开
            [notificationSwitch setOn:YES];
            // 设置switch开关打开时显示的颜色
            notificationSwitch.onTintColor = [UIColor colorWithHexString:@"#1A9FF7"];
            // 设置关闭状态是,边边线条的颜色,也是关闭时过渡动画的颜色
            notificationSwitch.tintColor = [UIColor colorWithHexString:@"#1A9FF7"];
    

    相关文章

      网友评论

          本文标题:ios-UISwitch常用属性设置

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