UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"원하는 정보를 선택\n"
message:@"" // 제목
delegate:self
cancelButtonTitle:@"Cancel" // 취소버튼
otherButtonTitles:@"아황산가스(SO2)", @"이산화질소(NO2)", @"일산화탄소(CO)", @"오존(O3)", @"미세먼지(PM10)",nil];
[alert show];
[alert release];
- (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (buttonIndex == 0) // "아황산가스?" 버튼
{
// 처리 내용
NSLog(@"gogogo");
}
}
'iOS' 카테고리의 다른 글
Interface Builder를 이용한 Custom Cell 만들기 (0) | 2012.06.20 |
---|---|
리뷰중인 앱과 In App Purchase 등록 (0) | 2012.06.20 |
앱스토어 완전정복 - IAP 인앱퍼처스 돌다리도 두들겨보고 건너기 (0) | 2012.06.20 |
In App Purchase 샌드박스내에서 테스트하기 (0) | 2012.06.20 |
[Customize] UIAlertView (0) | 2012.06.20 |