2012-10-22 131 views
1

基本上我想自定義背景和按鈕。我希望按鈕是方形的。像這樣的東西。如何修改UISwitchController,使其看起來像這樣:

我的設計師已經爲我提供了這個圖片:

enter image description here enter image description here

我期待到是隻用UIButton的事情。但是,如何讓UIButton處於開關模式?我應該怎麼做,這樣,如果點擊按鈕,然後就變成了「選擇」

,我想結果是這樣的:

enter image description here

回答

1
UIButton *switchButton = [[UIButton alloc] init]; 
[switchButton setBackgroundImage:offImage forState:UIControlStateNormal]; 
[switchButton setBackgroundImage:onImage forState:UIControlStateSelected]; 

當你想按鈕看起來「上」,只是做:switchButton.selected = YES;它已被挖掘後,或當別人要爲它設置狀態。

相關問題