아이폰어플 alert 함수.
안드로이드 toast 나 dialogalert 와 같은 것이지요
왼쪽과 같이 하기 위한 소스 입니다.
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Sample" message:@"Outline.\nThis is ""Sample"" message! \n\nsaaaaaaaaaaaaaaaaaaaaaaaaaaample!!! " delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
[alert release];
필요에 따라 사용하시면 되지요.
========================= 예제 소스 =======================
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"메세지 타이틀"
message:@"메세지 내용"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:nil];
[alert show];
[alert release];
안드로이드 toast 나 dialogalert 와 같은 것이지요
왼쪽과 같이 하기 위한 소스 입니다.
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Sample" message:@"Outline.\nThis is ""Sample"" message! \n\nsaaaaaaaaaaaaaaaaaaaaaaaaaaample!!! " delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
[alert release];
필요에 따라 사용하시면 되지요.
========================= 예제 소스 =======================
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"메세지 타이틀"
message:@"메세지 내용"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:nil];
[alert show];
[alert release];
'개발도구 > iOS - 아이폰 개발' 카테고리의 다른 글
[아이폰] NSMutableDictionary (0) | 2011.09.30 |
---|---|
[아이폰] Xcode4 에서 Framework 추가 하기 (0) | 2011.09.30 |
[아이폰] NSUserDefaults (0) | 2011.09.27 |
[아이폰] add version 아이폰 어플 버전업때 배포과정 (0) | 2011.08.23 |
[아이폰] tableview row 파란색 없애기 (0) | 2011.08.22 |