Skip to content
This repository was archived by the owner on May 8, 2020. It is now read-only.

Commit ef9a052

Browse files
committed
Fix tab bar controller after changes in content view controller
1 parent 3197c74 commit ef9a052

File tree

3 files changed

+23
-16
lines changed

3 files changed

+23
-16
lines changed

DCTTabBarController/DCTTabBarController.m

+17-15
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3838
#import "UIView+DCTSubviewExtensions.h"
3939
#import "UIResponder+DCTNextResponderExtensions.h"
4040

41-
NSUInteger const DCTTabBarUnselectedIndex = -1;
42-
4341
@interface DCTTabBarController ()
4442
- (void)dctInternal_setUpTabBarItems;
4543
- (void)dctInternal_sendDelegateMessageDidSelectViewController:(UIViewController *)viewController;
@@ -74,7 +72,9 @@ - (id)init {
7472
if (!(self = [super init])) return nil;
7573

7674
self.position = DCTContentBarPositionBottom;
77-
selectedIndex = DCTTabBarUnselectedIndex;
75+
self.barHidden = NO;
76+
self.landscapeBarSize = CGSizeMake(480.0f, 49.0f);
77+
self.portraitBarSize = CGSizeMake(320.0f, 49.0f);
7878

7979
return self;
8080
}
@@ -90,11 +90,11 @@ - (void)viewDidUnload {
9090
- (void)viewDidLoad {
9191
[self dctInternal_setUpTabBarItems];
9292
self.barView = self.tabBar;
93-
if (self.selectedIndex == DCTTabBarUnselectedIndex) self.selectedIndex = 0;
93+
self.selectedIndex = self.selectedIndex;
9494
self.tabBar.selectedItem = [self.tabBar.items objectAtIndex:self.selectedIndex];
9595
self.tabBar.delegate = self;
9696
[super viewDidLoad];
97-
[self loadContentView];
97+
9898
viewIsLoaded = YES;
9999
}
100100

@@ -140,26 +140,25 @@ - (void)setTabBarHidden:(BOOL)hidden animated:(BOOL)animated {
140140
}
141141

142142
- (void)loadContentView {
143-
144-
BOOL firstLoad = [self.contentView dct_hasSubviews];
145-
146-
//[self.contentView dct_removeAllSubviews];
147-
148-
if (firstLoad) [self dctInternal_refreshNavigationControllerItems];
143+
if ([self isContentViewLoaded]) [self dctInternal_refreshNavigationControllerItems];
149144
}
150145

151146
#pragma mark -
152147
#pragma mark Accessors
153148

154149
- (void)setSelectedIndex:(NSUInteger)integer {
155150

156-
if (integer == selectedIndex) return;
151+
BOOL firstLoad = [self isContentViewLoaded];
152+
153+
if (!firstLoad && integer == selectedIndex) return;
157154

158155
UIViewController *oldVC = nil;
159-
if (selectedIndex != DCTTabBarUnselectedIndex) oldVC = self.selectedViewController;
156+
if (!firstLoad) oldVC = self.selectedViewController;
160157

161158
selectedIndex = integer;
159+
162160
UIViewController *newVC = self.selectedViewController;
161+
163162
newVC.view.frame = self.contentView.bounds;
164163

165164
[oldVC viewWillDisappear:NO];
@@ -173,7 +172,6 @@ - (void)setSelectedIndex:(NSUInteger)integer {
173172
}
174173

175174
- (UIViewController *)selectedViewController {
176-
if (self.selectedIndex == DCTTabBarUnselectedIndex) self.selectedIndex = 0;
177175
return [viewControllers objectAtIndex:self.selectedIndex];
178176
}
179177

@@ -189,7 +187,11 @@ - (void)setTabBar:(DCTTabBar *)aTabBar {
189187
}
190188

191189
- (DCTTabBar *)tabBar {
192-
if (!tabBar) self.tabBar = [[DCTTabBar alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 320.0f, 44.0f)];
190+
if (!tabBar) {
191+
DCTTabBar *tb = [[DCTTabBar alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 320.0f, 49.0f)];
192+
self.tabBar = tb;
193+
[tb release];
194+
}
193195
return tabBar;
194196
}
195197

View Controllers/DCTContentViewController.h

+2
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ typedef enum {
8989
- (void)loadBarView;
9090
- (void)loadContentView;
9191

92+
- (BOOL)isContentViewLoaded;
93+
9294
// Publically Use:
9395
- (id)initWithViewController:(UIViewController *)aViewController;
9496

View Controllers/DCTContentViewController.m

+4-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ - (void)viewDidLoad {
8484

8585
[self.view addSubview:self.barView];
8686
self.contentView.frame = [self dctInternal_contentFrameForInterfaceOrientation:self.interfaceOrientation barHidden:self.barHidden];
87-
8887
UIViewAutoresizing resizing = (UIViewAutoresizingFlexibleHeight |
8988
UIViewAutoresizingFlexibleWidth);
9089

@@ -204,6 +203,10 @@ - (UIView *)contentView {
204203
return contentView;
205204
}
206205

206+
- (BOOL)isContentViewLoaded {
207+
return (contentView == nil);
208+
}
209+
207210
- (UIView *)barView {
208211
if (!barView) [self loadBarView];
209212
if (!barView) barView = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, self.view.bounds.size.width, 44.0f)];

0 commit comments

Comments
 (0)