IOS 7 layout layout and transparency effect

I have a few questions. Basically I want to rebuild this view:

enter image description here

During recovery of this, I get strange behavior. Let's start:

My progress first:

Device screenshot:

enter image description here

The structure of My ViewControllers (storyboard):

enter image description here

Ok step by step:

Navigation bar

I tried to make it transparent, and I think it works fine, but as you can see in my structure, I put a UIView on top of my background image (a large profile image) that mimics an alpha overlay. As you can see on my screen “Device Screenshot”, the navigation bar overlaps the overlay. So any idea how to fix this?

the code:

[self.navigationController.navigationBar setBackgroundImage:[UIImage new]
                                                               forBarMetrics:UIBarMetricsDefault];
self.navigationController.navigationBar.shadowImage = [UIImage new];
self.navigationController.navigationBar.translucent = YES;
self.navigationController.navigationBarHidden = NO;

View Positioning

, - , . ? .

UIView, -, , . .

, , , background-imageview ( , !).

, , . ; (

+3
2

, . , .

0

. ! , UIScrollView , ( , ).

:

self.automaticallyAdjustsScrollViewInsets = NO;
0

All Articles