반응형
테이블 뷰에다가 alert를 사용할때는 태그값이 필요할수도 있다. 버튼 하나만 사용하고 싶으면 @"취소" 부분을 nil 하여주면 됨
UIAlertView *alert =
[[UIAlertView alloc]initWithTitle:@"타이틀 제목" message:@"말할 메세지" delegate:self cancelButtonTitle:@"취소"otherButtonTitles:@"확인", nil];
alert.tag = 1
[alert show];
//밑에것은 alert 클릭시 타는 부분
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
NSLog(@"alertView : %ld , %d", buttonIndex, (int)alertView.tag);
if((int)alertView.tag == 2){
if (buttonIndex == 1){
//로직
}
}
}
반응형
'프로그램 > iOS' 카테고리의 다른 글
iOS 테이블뷰 사용법 (0) | 2016.02.22 |
---|---|
iOS 동적 라벨에 따라서 cell 높이 변경 (0) | 2016.02.19 |
iOs UILabel, UIButton 색상, 폰트, 글자체 변경 (0) | 2016.02.19 |
iOS 동적 Uiview 생성하기 (0) | 2016.02.19 |
iOS UI 이미지 변경 및 색상 변경 (0) | 2016.02.19 |