본문 바로가기

개발도구/iOS - 아이폰 개발

[아이폰] replace 특수문자 대치, 문자열 합치기

특수문자 대치하기 replace
        
ch_title = [ch_title stringByReplacingOccurrencesOfString:@"&quot"

                                             withString:@"\""];

    

문자열 합치기
       ch_title = [NSString stringWithFormat:@"%@+%@",ch_title,ch];