Notice
Recent Posts
Recent Comments
Link
투케이2K
80. (Objective-C/objc) for [데이터] in [배열] 구문을 사용해 array 배열 데이터 목록 출력 실시 본문
Objective-C
80. (Objective-C/objc) for [데이터] in [배열] 구문을 사용해 array 배열 데이터 목록 출력 실시
투케이2K 2022. 9. 21. 16:34[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : OBJECTIVE-C
[소스 코드]
// MARK: - [헤더 파일에 정의 없이 : void 메소드 구현]
- (void)testMain {
printf("\n");
printf("==================================== \n");
printf("[ViewController >> testMain() :: 테스트 메소드 수행] \n");
printf("==================================== \n");
printf("\n");
/*
------------------------------------
[요약 설명]
------------------------------------
1. NSArray : 배열을 선언할 수 있습니다
------------------------------------
2. initWithObjects : 배열 데이터를 정의할 수 있으며, 마지막 부분에 nil 값이 들어가야합니다
------------------------------------
3. for [데이터] in [배열] 구문을 사용해 간편하게 배열 목록 데이터를 출력할 수 있습니다
------------------------------------
*/
// [try catch 구문 정의 실시]
@try {
// [초기 변수 선언 실시]
NSArray *array = [[NSArray alloc]
initWithObjects:@"one", @"two", @"three", nil];
// [for in 구문을 사용해 배열 목록 출력 실시]
for(NSString *arrayData in array) {
printf("\n");
printf("==================================== \n");
printf("[ViewController >> for :: 반복문 데이터 확인] \n");
printf("[arrayData :: %s] \n", arrayData.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