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