간혹 ViewController로 만들어진 라이브러리를 합쳐서 사용하고 싶을 때가 있다.
하지만 view만 가져와서 넣으면 정상적으로 작동하지 않는다.
정상적으로 작동하게 하려면 아래와 같이 viewController를 넣어주면 된다.
[self addChildViewController:imagePickerViewController];
[self.view addSubview:imagePickerViewController.view];
'Development > IOS & Mac' 카테고리의 다른 글
NSFileManager - the operation couldn t be completed cocoa error 4 (0) | 2014.09.06 |
---|---|
NSArray 정렬하기 (0) | 2014.08.28 |
iOS @autoreleasepool 사용하기 (0) | 2014.08.13 |
iOS Background 실행시키기 (0) | 2014.08.01 |
iCarousel 라이브러리에서 iCarouselTypeWheel 모드일 때 선택된 View 앞으로 보이게 하기 (0) | 2014.07.28 |