UIButton toggle 스타일로 만들기
Dev/iOS 2012. 1. 30. 19:11헤더 파일에 추가:
IBOutlet UIButton *toggleButton;
BOOL toggleIsOn;
@property (nonatomic, retain) IBOutlet UIButton *toggleButton;
구현 파일:
- (IBACtion)toggle:(id)sender
{
if(toggleIsOn){
//do anything else you want to do.
}
else {
//do anything you want to do.
}
toggleIsOn = !toggleIsOn;
[self.toggleButton setImage:[UIImage imageNamed:toggleIsOn ? @"on.png" :@"off.png"] forState:UIControlStateNormal];
}
then link your button with the IBActions and the IBOutlet and initialize toggleIsOn
to NO.
출처 : stackoverflow
'Dev > iOS' 카테고리의 다른 글
iOS Google API (0) | 2012.01.13 |
---|---|
아이폰 Tab bar에 배경 이미지 넣기. (0) | 2012.01.03 |
UINavigationBar 에 배경 이미지 삽입. (0) | 2012.01.03 |
NSString replace (0) | 2012.01.03 |
터치 이벤트가 호출이 안되는 경우. (0) | 2011.12.29 |