i'm trying change status bar color for the same color that i have in navigation bar. I did this:
UIView *addStatusBar = [[UIView alloc] init];
addStatusBar.frame = CGRectMake(0, -20, 320, 20);
addStatusBar.backgroundColor = [UIColor colorWithRed:0 green:153 blue:156 alpha:1];
[self.view addSubview:addStatusBar];
[self.navigationController.navigationBar addSubview:addStatusBar];
Navigation bar color is web safe color translucent 009999
How can i set this color at background color parameters?