UIAlertView Message Box

-- iOS (iPhone) 2012. 11. 13. 14:10
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
NSLog로 디버그할 수 없을 때 아래와 같이 MessageBox를 열어서 확인할 수 있다.

UIAlertView *alert = [[UIAlertViewalloc] initWithTitle:@"title"  
message:@"debug message" 
delegate: nil 
cancelButtonTitle:@"OK" 
otherButtonTitles: nil];

[alert show];

'-- iOS (iPhone)' 카테고리의 다른 글

unrecognized selector sent to instance  (0) 2012.11.23
XCode static library 생성  (0) 2012.11.22
아이폰 배포 SDK버전 설정  (0) 2012.10.22
add right button (exit button) on navigator bar  (0) 2012.10.15
make hyperlink  (0) 2012.10.15
posted by 어린왕자악꿍