UIAlertView* customAlert = [[UIAlertView alloc] initWithTitle:@"MoneyTodayPAD" message:@"머니투데이 신문보기는 뉴스가판대 서비스에서 이용하실수 있습니다. 뉴스가판대로 이동하시겠습니까?" delegate:nil cancelButtonTitle:@"확인" otherButtonTitles:nil];
[customAlert show];
[customAlert autorelease];
static BOOL diagStat = NO; //예,아니오 버튼의 상태를 저장할 임시 변수
-(class action){
UIAlertView *confirmDiag = [[UIAlertView alloc] initWithTitle:nil message:@"머니투데이 신문보기는 뉴스가판대 서비스에서 이용하실수 있습니다. 뉴스가판대로 이동하시겠습니까?" delegate:self cancelButtonTitle:NSLocalizedString(@"Yes", @"예") otherButtonTitles:NSLocalizedString(@"No", @"아니오"), nil];
[confirmDiag show];
while (confirmDiag.hidden == NO && confirmDiag.superview != nil)
[[NSRunLoop mainRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.01f]];
[confirmDiag release];
return diagStat;
}
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
//index 0 : YES , 1 : NO
if (buttonIndex == 0){
NSLog(@"1");
diagStat = YES;
} else if (buttonIndex == 1) {
//return NO;
NSLog(@"2");
diagStat = NO;
}
'개발도구 > iOS - 아이폰 개발' 카테고리의 다른 글
[아이폰] trim 글자 자르기 (0) | 2012.03.26 |
---|---|
[아이폰] itunes store link 로 바로 가기 (0) | 2012.03.23 |
[아이폰] APP IDs 관하여 (0) | 2012.03.23 |
[아이폰] 에러 - the signature was invalid or it was not signed with an iphone distribution certificate (0) | 2012.03.23 |
[아이폰] Unity framework (0) | 2012.03.23 |