2014-10-20 4 views
-1

저는 iOS에서 최신입니다. 내 질문은 전자 메일에서 문자열을 큰 따옴표로 묶는 방법 ""무엇입니까?문자열에 따옴표를 넣는 방법은 무엇입니까?

NSString* messageString = [NSString stringWithFormat: @"%@ does not apppear to be valid email address.Do You Want sent Anyway?", email]; 
UIAlertView *alertView =[[UIAlertView alloc]initWithTitle:@"Invalid adress" message:messageString delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil]; 
[alertView show]; 
break; 
+2

사용이>'\ "'예'\"잘못된 이메일 \ "' – MaappeaL

답변

1

사용이 코드

NSString* messageString = [NSString stringWithFormat: @"\"%@\" does not appear to be valid email address.Do You Want sent Anyway?", email]; 
+0

TNKS ........... –

관련 문제