Skip to content

Commit 9d999ca

Browse files
committed
v1.5.0 : add Initializer and convenience constructor methods for CYLTabBarController
1 parent d3a87a2 commit 9d999ca

6 files changed

+60
-47
lines changed

CYLTabBarController.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "CYLTabBarController"
3-
s.version = "1.4.5"
3+
s.version = "1.5.0"
44
s.summary = "Highly customizable tabBar and tabBarController for iOS"
55
s.description = "CYLTabBarController is iPad and iPhone compatible. Supports landscape and portrait orientations and can be used inside UINavigationController."
66
s.homepage = "https://github.com/ChenYilong/CYLTabBarController"

CYLTabBarController/CYLTabBar.m

+4-4
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ - (void)layoutSubviews {
8989
#pragma mark -
9090
#pragma mark - Private Methods
9191

92+
+ (BOOL)automaticallyNotifiesObserversForKey:(NSString *)key {
93+
return NO;
94+
}
95+
9296
// KVO监听执行
9397
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
9498
if(context != CYLTabBarContext) {
@@ -121,10 +125,6 @@ - (void)setSwappableImageViewDefaultOffset:(CGFloat)swappableImageViewDefaultOff
121125
}
122126
}
123127

124-
+ (BOOL)automaticallyNotifiesObserversForKey:(NSString *)key {
125-
return NO;
126-
}
127-
128128
- (CGFloat)multiplerInCenterY {
129129
CGFloat multiplerInCenterY;
130130
if ([[self.plusButton class] respondsToSelector:@selector(multiplerInCenterY)]) {

CYLTabBarController/CYLTabBarController.h

+4
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ FOUNDATION_EXTERN CGFloat CYLTabBarItemWidth;
4747
*/
4848
@property (nonatomic, readwrite, assign) UIOffset titlePositionAdjustment;
4949

50+
- (instancetype)initWithViewControllers:(NSArray<UIViewController *> *)viewControllers tabBarItemsAttributes:(NSArray<NSDictionary *> *)tabBarItemsAttributes;
51+
52+
+ (instancetype)tabBarControllerWithViewControllers:(NSArray<UIViewController *> *)viewControllers tabBarItemsAttributes:(NSArray<NSDictionary *> *)tabBarItemsAttributes;
53+
5054
/*!
5155
* Judge if there is plus button.
5256
*/

CYLTabBarController/CYLTabBarController.m

+13
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,19 @@ - (void)dealloc {
6767
#pragma mark -
6868
#pragma mark - public Methods
6969

70+
- (instancetype)initWithViewControllers:(NSArray<UIViewController *> *)viewControllers tabBarItemsAttributes:(NSArray<NSDictionary *> *)tabBarItemsAttributes {
71+
if (self = [super init]) {
72+
_tabBarItemsAttributes = tabBarItemsAttributes;
73+
self.viewControllers = viewControllers;
74+
}
75+
return self;
76+
}
77+
78+
+ (instancetype)tabBarControllerWithViewControllers:(NSArray<UIViewController *> *)viewControllers tabBarItemsAttributes:(NSArray<NSDictionary *> *)tabBarItemsAttributes {
79+
CYLTabBarController *tabBarController = [[CYLTabBarController alloc] initWithViewControllers:viewControllers tabBarItemsAttributes:tabBarItemsAttributes];
80+
return tabBarController;
81+
}
82+
7083
+ (BOOL)havePlusButton {
7184
if (CYLExternPlusButton) {
7285
return YES;

Example/CYLTabBarControllerConfig.m

+37-41
Original file line numberDiff line numberDiff line change
@@ -43,52 +43,48 @@ @implementation CYLTabBarControllerConfig
4343
*/
4444
- (CYLTabBarController *)tabBarController {
4545
if (_tabBarController == nil) {
46-
CYLHomeViewController *firstViewController = [[CYLHomeViewController alloc] init];
47-
UIViewController *firstNavigationController = [[CYLBaseNavigationController alloc]
48-
initWithRootViewController:firstViewController];
49-
50-
CYLSameCityViewController *secondViewController = [[CYLSameCityViewController alloc] init];
51-
UIViewController *secondNavigationController = [[CYLBaseNavigationController alloc]
52-
initWithRootViewController:secondViewController];
53-
54-
CYLMessageViewController *thirdViewController = [[CYLMessageViewController alloc] init];
55-
UIViewController *thirdNavigationController = [[CYLBaseNavigationController alloc]
56-
initWithRootViewController:thirdViewController];
57-
58-
CYLMineViewController *fourthViewController = [[CYLMineViewController alloc] init];
59-
UIViewController *fourthNavigationController = [[CYLBaseNavigationController alloc]
60-
initWithRootViewController:fourthViewController];
61-
CYLTabBarController *tabBarController = [[CYLTabBarController alloc] init];
62-
63-
/**
64-
* 以下两行代码目的在于手动设置让TabBarItem只显示图标,不显示文字,并让图标垂直居中。
65-
* 等效于在`-setUpTabBarItemsAttributesForController`方法中不传`CYLTabBarItemTitle`字段。
66-
* 更推荐后一种做法。
67-
*/
68-
//tabBarController.imageInsets = UIEdgeInsetsMake(4.5, 0, -4.5, 0);
69-
//tabBarController.titlePositionAdjustment = UIOffsetMake(0, MAXFLOAT);
70-
71-
// 在`-setViewControllers:`之前设置TabBar的属性,设置TabBarItem的属性,包括 title、Image、selectedImage。
72-
[self setUpTabBarItemsAttributesForController:tabBarController];
73-
74-
[tabBarController setViewControllers:@[
75-
firstNavigationController,
76-
secondNavigationController,
77-
thirdNavigationController,
78-
fourthNavigationController
79-
]];
80-
// 更多TabBar自定义设置:比如:tabBarItem 的选中和不选中文字和背景图片属性、tabbar 背景图片属性
46+
CYLTabBarController *tabBarController = [CYLTabBarController tabBarControllerWithViewControllers:self.viewControllers
47+
tabBarItemsAttributes:self.tabBarItemsAttributesForController];
8148
[self customizeTabBarAppearance:tabBarController];
8249
_tabBarController = tabBarController;
8350
}
8451
return _tabBarController;
8552
}
8653

87-
/**
88-
* 在`-setViewControllers:`之前设置TabBar的属性,设置TabBarItem的属性,包括 title、Image、selectedImage。
89-
*/
90-
- (void)setUpTabBarItemsAttributesForController:(CYLTabBarController *)tabBarController {
54+
- (NSArray *)viewControllers {
55+
CYLHomeViewController *firstViewController = [[CYLHomeViewController alloc] init];
56+
UIViewController *firstNavigationController = [[CYLBaseNavigationController alloc]
57+
initWithRootViewController:firstViewController];
58+
59+
CYLSameCityViewController *secondViewController = [[CYLSameCityViewController alloc] init];
60+
UIViewController *secondNavigationController = [[CYLBaseNavigationController alloc]
61+
initWithRootViewController:secondViewController];
62+
63+
CYLMessageViewController *thirdViewController = [[CYLMessageViewController alloc] init];
64+
UIViewController *thirdNavigationController = [[CYLBaseNavigationController alloc]
65+
initWithRootViewController:thirdViewController];
9166

67+
CYLMineViewController *fourthViewController = [[CYLMineViewController alloc] init];
68+
UIViewController *fourthNavigationController = [[CYLBaseNavigationController alloc]
69+
initWithRootViewController:fourthViewController];
70+
71+
/**
72+
* 以下两行代码目的在于手动设置让TabBarItem只显示图标,不显示文字,并让图标垂直居中。
73+
* 等效于在 `-tabBarItemsAttributesForController` 方法中不传 `CYLTabBarItemTitle` 字段。
74+
* 更推荐后一种做法。
75+
*/
76+
//tabBarController.imageInsets = UIEdgeInsetsMake(4.5, 0, -4.5, 0);
77+
//tabBarController.titlePositionAdjustment = UIOffsetMake(0, MAXFLOAT);
78+
NSArray *viewControllers = @[
79+
firstNavigationController,
80+
secondNavigationController,
81+
thirdNavigationController,
82+
fourthNavigationController
83+
];
84+
return viewControllers;
85+
}
86+
87+
- (NSArray *)tabBarItemsAttributesForController {
9288
NSDictionary *dict1 = @{
9389
CYLTabBarItemTitle : @"首页",
9490
CYLTabBarItemImage : @"home_normal",
@@ -115,11 +111,11 @@ - (void)setUpTabBarItemsAttributesForController:(CYLTabBarController *)tabBarCon
115111
dict3,
116112
dict4
117113
];
118-
tabBarController.tabBarItemsAttributes = tabBarItemsAttributes;
114+
return tabBarItemsAttributes;
119115
}
120116

121117
/**
122-
* 更多TabBar自定义设置:比如:tabBarItem 的选中和不选中文字和背景图片属性、tabbar 背景图片属性
118+
* 更多TabBar自定义设置:比如:tabBarItem 的选中和不选中文字和背景图片属性、tabbar 背景图片属性等等
123119
*/
124120
- (void)customizeTabBarAppearance:(CYLTabBarController *)tabBarController {
125121
#warning CUSTOMIZE YOUR TABBAR APPEARANCE

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
<p align="center">
5-
![enter image description here](https://img.shields.io/badge/pod-v1.4.5-brightgreen.svg)
5+
![enter image description here](https://img.shields.io/badge/pod-v1.5.0-brightgreen.svg)
66
![enter image description here](https://img.shields.io/badge/Swift-compatible-orange.svg) ![enter image description here](https://img.shields.io/badge/platform-iOS%207.0%2B-ff69b5618733984.svg)
77
</a>
88

0 commit comments

Comments
 (0)