.h檔案中宣告:
uiswitch * leftswitch;
@property(nonatomic, retain) iboutletuiswitch * leftswitch;
.m檔案中新增:
@synthesize leftswitch;
viewdidunload()中新增:
leftswitch=
nil;
dealloc()中新增:
[leftswitch
release
];顯示:
leftswitch.
hidden
= no
;隱藏:
leftswitch.
hidden
= yes
;通過ibaction方法設定開關
-(ibaction) switchchanged:(id)sender
UISwitch常用方法
一 第一種建立uiswitch控制項的方法,在 中動態建立。2 開啟viewcontroller.m檔案在viewdidload方法裡新增 cpp view plain copy void viewdidload switchbutton addtarget self action selector...
UISwitch控制項屬性
uiswitch控制項屬性 1.ontintcolor 處於on時switch 的顏色 switchimage.ontintcolor uicolor graycolor 2.tintcolor 處於off時switch 的顏色 switchimage.tintcolor uicolor green...
UISwitch的詳細使用
開關 uiswitch 提供了乙個簡單的開 關ui元素,類似於傳統的物理開關,開關的可配置選項很少,應將其用於處理布林值。我們使用其value changed事件來檢測開關切換,並通過屬性on或例項方法ison來獲取當前值。1.uiswitch的初始化 uiswitch switchview uis...