UISwitch On/Off 상태 가져오기
UISwitch* whatSwitch = [[UISwitch alloc] init~~];
...
if (whatSwitch.on == YES) {
//Do stuff
}
else if (whatSwitch.on == NO) {
// Do other stuff
}
else {
// Do stuff if whatSwitch is nil
}
반응형
'Programming > iOS - ObjC' 카테고리의 다른 글
UILabel - 특정 범위 색상 변경 (0) | 2015.07.09 |
---|---|
Device type check (0) | 2015.07.09 |
CATransition - UINavigation push animation (0) | 2015.07.09 |
UIAlertView - TextField 추가 (0) | 2015.07.09 |
NSString - Base64 Encoding/Decoding (0) | 2015.06.30 |
MPMoviePlayerController - 비디오 재생 (0) | 2014.12.04 |
MPMoviePlayerController - 오디오 스트리밍 재생 (0) | 2014.12.04 |
Email 주소 유효성 검사 (0) | 2014.12.02 |
UIWebView - POST request 사용 및 Header 넣기 (0) | 2014.12.02 |
[Deprecated-iOS7] UITextAttributeTextColor (0) | 2014.12.02 |