Develop
2015.01.03 14:45
[ios] UIView 계층구조
조회 수 2325 댓글 0
UIViewUtility (계층구조)
// // UIView+Helper.m // UIViewExtension // // Created by KIM SUNG CHEOL on 12. 1. 9.. // Copyright (c) 2012 individual. All rights reserved. // #import "UIViewUtility.h" @implementation UIViewUtilty #pragma mark - #pragma mark 뷰계층구조 /** * @brief 레벨을 늘려가며 재귀적으로 뷰 트리를 탐색해 내려간다 * @param aView : 탐색을 시작할 뷰 * @param atIndent : 뷰 계층의 깊이 * @param into : 결과를 받을 스트링 * @return none * @remark none * @see displayViews: * @author Sungcheol Kim(skyfe79@gmail.com) */ +(void) dumpView:(UIView *)aView atIndent:(int)indent into:(NSMutableString *)outString { for(int i=0; i<indent; i++) { [outString appendString:@" "]; } [outString appendFormat:@"[%2d] %@ ", indent, [[aView class] description]]; for(UIView *view in [aView subviews]) [self dumpView:view atIndent:indent+1 into:outString]; } /** * @brief 레벨 0인 루트 뷰에서붙 트리를 재귀적으로 탐색한다 * @param aView : 탐색을 시작할 뷰 * @return NSString* : 탐색 결과 뷰의 계층 구조를 담은 문자열 * @remark none * @see dumpView:atIndent:into: * @author Sungcheol Kim(skyfe79@gmail.com) * @exeample UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; [button addSubview:[UIButton buttonWithType:UIButtonTypeCustom]]; [self.view addSubview:button]; [self.view addSubview:[UIButton buttonWithType:UIButtonTypeCustom]]; NSLog(@" %@",[self.view displayViews:self.view]); * @out [ 0] UIView [ 1] UIButton [ 2] UIButton [ 1] UIButton */ +(NSString *)displayViews:(UIView *)aView { NSMutableString *outString= [[NSMutableString alloc] init]; [self dumpView:aView atIndent:0 into:outString]; return [outString autorelease]; } #pragma mark - #pragma mark 뷰탐색 /** * @brief 뷰의 하위 뷰에 해당하는 모든 자손을 배열로 반환한다 * @param aView : 시작할 뷰 * @return NSArray : 모든 자손 뷰 배열 * @remark none * @see none * @author Sungcheol Kim(skyfe79@gmail.com) */ +(NSArray *)allSubViews:(UIView *)aView { NSArray *result = [aView subviews]; for(UIView *view in [aView subviews]) { NSArray *subviews = [UIViewUtilty allSubViews:view]; if(subviews) { result = [result arrayByAddingObjectsFromArray:subviews]; } } return result; } /** * @brief 애플리케이션의 모든 뷰를 반환한다 * @param void * @return 애플리케이션의 모든 뷰를 담은 배열 * @remark none * @see none * @author Sungcheol Kim(skyfe79@gmail.com) */ +(NSArray *)allApplicationViews { NSArray *result = [[UIApplication sharedApplication] windows]; for(UIWindow *window in [[UIApplication sharedApplication] windows]) { NSArray *subviews = [UIViewUtilty allSubViews:window]; if(subviews) { result = [result arrayByAddingObjectsFromArray:subviews]; } } return result; } /** * @brief UIWindow로부터 해당 뷰까지 부모 뷰의 배열을 반환한다 * @param aView : 경로를 얻을 뷰 * @return 경로를 담은 배열 * @remark none * @see none * @author Sungcheol Kim(skyfe79@gmail.com) */ +(NSArray *)pathToView:(UIView *)aView { NSMutableArray *array = [NSMutableArray arrayWithObject:aView]; UIView *view = aView; UIWindow *window = aView.window; while (view!=window) { view = [view superview]; [array insertObject:view atIndex:0]; } return array; } @end
[출처] https://github.com/skyfe79/iOSToolkit/blob/master/UIView/UIViewUtility.m
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
783 | Develop |
[ios] iOS 앱 아이콘을 만드는 유틸
![]() |
hooni | 2015.01.03 | 2323 |
» | Develop | [ios] UIView 계층구조 | hooni | 2015.01.03 | 2325 |
781 | Develop |
리팩토링 계획안
![]() |
hooni | 2017.05.15 | 2356 |
780 | Develop | [ios] Crashlytics, Fabfic 설치/설정 | hooni | 2016.07.21 | 2363 |
779 | Develop |
[ios] 오브젝티브C→스위프트, 코드 변환 손쉽게
![]() |
hooni | 2015.08.07 | 2378 |
778 | Develop |
[c] 기막힌 정렬 코드 ㅋㄷ
![]() |
hooni | 2015.10.13 | 2394 |
777 | Develop |
[c] 파일명 또는 특정 패턴을 적용
![]() |
hooni | 2016.08.03 | 2408 |
776 | Develop |
'2014 모바일 개발 트렌드' 발표자료입니다.
![]() |
hooni | 2014.10.02 | 2537 |
775 | Develop |
[sh] html 안에 있는 img 다운 받는 쉘 스크립트
![]() |
hooni | 2020.05.26 | 2571 |
774 | Develop |
[c] FSN 온라인 코딩 테스트 (Sorting, Binary Search)
![]() |
hooni | 2015.06.26 | 2572 |
773 | Develop | [ios] 스크린 캡쳐 (전원버튼 + 홈버튼) 호출 알아내기 | hooni | 2014.11.19 | 2601 |
772 | Develop |
[web] 더 빠른 웹을 위한 프로토콜, 'HTTP/2'
![]() |
hooni | 2014.10.20 | 2662 |