[ios] NSString 문자열 삽입

2013. 10. 25. 15:04Scrapbook/개발 및 프로그래밍

반응형


UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"알림"

                                                            message:[NSString stringWithFormat:@"\n%@\n어쩌구 저쩌구.","첨가할 텍스트 또는 변수"]

                                                           delegate:self

                                                  cancelButtonTitle:@"취소"

                                                  otherButtonTitles:@"이동",nil];

반응형