Notice
Recent Posts
Recent Comments
Link
투케이2K
81. (Objective-C/objc) stringWithFormat 사용해 NSString 문자열 데이터 concat 형식으로 합치기 (결합) 실시 본문
Objective-C
81. (Objective-C/objc) stringWithFormat 사용해 NSString 문자열 데이터 concat 형식으로 합치기 (결합) 실시
투케이2K 2022. 9. 22. 08:05[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : OBJECTIVE-C
[소스 코드]
// [try catch 구문 정의 실시]
@try {
// [초기 변수 선언 실시]
NSString *strData = @"투케이2K";
// [stringWithFormat 사용해 concat 형식으로 문자열 결합 실시]
NSString *concatData = [NSString stringWithFormat:@"%@/%@/%@", @"안녕", strData, @"반가워"];
// [로그 출력 실시]
printf("\n");
printf("==================================== \n");
printf("[ViewController >> try :: 로직 처리 결과 확인] \n");
printf("[concatData :: %s] \n", concatData.description.UTF8String);
printf("==================================== \n");
printf("\n");
}
@catch (NSException *exception) {
printf("\n");
printf("==================================== \n");
printf("[ViewController >> catch :: 예외 상황 확인] \n");
printf("[name :: %s] \n", exception.name.description.UTF8String);
printf("[reason :: %s] \n", exception.reason.description.UTF8String);
printf("==================================== \n");
printf("\n");
}
[결과 출력]
반응형
'Objective-C' 카테고리의 다른 글
Comments