티스토리 뷰
델리게이트 <UIAlertViewDelegate>
띄우기
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"My Title"
message:@"Message"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:nil];
[alert show];
[alert release];
델리게이트 메소드
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
띄우기
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"My Title"
message:@"Message"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:nil];
[alert show];
[alert release];
델리게이트 메소드
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
//구현
}
'나름 프로그래밍? > Objective-C' 카테고리의 다른 글
3. Custom Classes, Object Lifecycle, Autorelease, Objective-C Properties (January 12, 2010) (0) | 2010.04.08 |
---|---|
XCode 에서 생긴 My Error Solution (1) | 2010.03.16 |
액션 시트 띄우기 (0) | 2010.03.02 |
아이폰 내부 경로 (0) | 2010.03.02 |
post 방식 예제 (1) | 2010.02.23 |