In the presenting View Controller add the following code if you want to support iOS7.
// For iOS modal presentation style must be set on presenting view controller.
if ([UIDevice currentDevice].systemVersion.integerValue >= 7)
[self setModalPresentationStyle:UIModalPresentationCurrentContext];
[self presentViewController:seeThroughViewController animated:YES completion:nil];
In the modal View Controller code add the following code
// Allows the presenting View Controller to be seen through the modal view controller
[self setModalPresentationStyle:UIModalPresentationCustom];
출처 : http://b2cloud.com.au/how-to-guides/invisible-background-modal-view/
'블로그 > 아이폰/iOS' 카테고리의 다른 글
[iOS] 키보드 노티피케이션 활용 (0) | 2016.01.08 |
---|---|
[iOS] 스크롤뷰 컨텐츠 내부 여백 제거 (0) | 2015.12.22 |
UIColor hex코드로 구하기. (0) | 2014.08.29 |
AFNetworking으로 RSS 받기. (0) | 2014.08.29 |
ios 키보드 대신 datePicker 띄우는 코드 (0) | 2014.08.29 |