iOS UISwitch控件
生活随笔
收集整理的這篇文章主要介紹了
iOS UISwitch控件
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
UISwitch是用于處理開關(guān)邏輯的控件。
UISwitch不能指定大小,由系統(tǒng)默認指定,修改frame不能更改它的大小。
指定150x50和200x75沒有區(qū)別
可以依靠CGAffineTransformMakeScale(1.2, 1.2)修改控件大小
主要屬性
// 是否開啟,默認是關(guān)閉 @property(nonatomic,getter=isOn) BOOL on;// 控件開啟狀態(tài)的填充色 @property(nullable, nonatomic, strong) UIColor *onTintColor; // 控件開關(guān)按鈕的顏色 @property(nullable, nonatomic, strong) UIColor *thumbTintColor;設(shè)置UISwitch背景
- (UISwitch *)makeCustomSwitch {UISwitch *customSwitch = [[UISwitch alloc] init];customSwitch.onTintColor = [UIColor magentaColor];customSwitch.thumbTintColor = [UIColor blueColor];customSwitch.backgroundColor = [UIColor orangeColor];customSwitch.layer.cornerRadius = 15;customSwitch.layer.masksToBounds = YES;return customSwitch; }顯示如下
監(jiān)聽開關(guān)狀態(tài)
UISwitch添加狀態(tài)監(jiān)聽器
onSwitchValueChange:方法監(jiān)聽修改
- (void)onSwitchValueChange:(UISwitch *)sender { }源碼下載: https://github.com/nai-chen/IosBlog
總結(jié)
以上是生活随笔為你收集整理的iOS UISwitch控件的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: .net 2.0 制作 柱状图
- 下一篇: 第五章 基元类型、引用类型、值类型 C