Skip to content

Commit 2119e91

Browse files
committed
v1.4.4 add property tabBarHeight allow to customize UITabBar height .
1 parent 5d98cae commit 2119e91

File tree

6 files changed

+36
-4
lines changed

6 files changed

+36
-4
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.3"
3+
s.version = "1.4.4"
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/CYLTabBarController.h

+5
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ FOUNDATION_EXTERN CGFloat CYLTabBarItemWidth;
3030
*/
3131
@property (nonatomic, readwrite, copy) NSArray<NSDictionary *> *tabBarItemsAttributes;
3232

33+
/*!
34+
* Customize UITabBar height
35+
*/
36+
@property (nonatomic, assign) CGFloat tabBarHeight;
37+
3338
/*!
3439
* To set both UIBarItem image view attributes in the tabBar,
3540
* default is UIEdgeInsetsZero.

CYLTabBarController/CYLTabBarController.m

+13
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,19 @@ - (void)viewDidLoad {
4646
self.delegate = self;
4747
}
4848

49+
- (void)viewWillLayoutSubviews {
50+
if (!self.tabBarHeight) {
51+
return;
52+
}
53+
self.tabBar.frame = ({
54+
CGRect frame = self.tabBar.frame;
55+
CGFloat tabBarHeight = self.tabBarHeight;
56+
frame.size.height = tabBarHeight;
57+
frame.origin.y = self.view.frame.size.height - tabBarHeight;
58+
frame;
59+
});
60+
}
61+
4962
- (void)dealloc {
5063
// KVO反注册
5164
[self.tabBar removeObserver:self forKeyPath:@"swappableImageViewDefaultOffset"];

Example/CYLTabBarControllerConfig.m

+12
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,14 @@ - (CYLTabBarController *)tabBarController {
6060
initWithRootViewController:fourthViewController];
6161
CYLTabBarController *tabBarController = [[CYLTabBarController alloc] init];
6262

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+
6371
// 在`-setViewControllers:`之前设置TabBar的属性,设置TabBarItem的属性,包括 title、Image、selectedImage。
6472
[self setUpTabBarItemsAttributesForController:tabBarController];
6573

@@ -115,6 +123,10 @@ - (void)setUpTabBarItemsAttributesForController:(CYLTabBarController *)tabBarCon
115123
*/
116124
- (void)customizeTabBarAppearance:(CYLTabBarController *)tabBarController {
117125
#warning CUSTOMIZE YOUR TABBAR APPEARANCE
126+
//Customize UITabBar height
127+
//自定义 TabBar 高度
128+
// tabBarController.tabBarHeight = 40.f;
129+
118130
// set the text color for unselected state
119131
// 普通状态下的文字属性
120132
NSMutableDictionary *normalAttrs = [NSMutableDictionary dictionary];

Example/Classes/Module/SameCity/CYLDetailsViewController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ - (void)viewDidLoad {
3232
}
3333

3434
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
35-
[self cyl_popSelectTabBarChildViewControllerAtIndex:0 completion:^(__kindof UIViewController *selectedTabBarChildViewController) {
35+
[self cyl_popSelectTabBarChildViewControllerAtIndex:3 completion:^(__kindof UIViewController *selectedTabBarChildViewController) {
3636
CYLMineViewController *mineViewController = selectedTabBarChildViewController;
3737
[mineViewController testPush];
3838
}];

README.md

+4-2
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.3-brightgreen.svg)
5+
![enter image description here](https://img.shields.io/badge/pod-v1.4.4-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

@@ -41,7 +41,7 @@
4141
3 | 自动监测是否需要添加“加号”按钮,</p>并能自动设置位置 |[CYLTabBarController](https://github.com/ChenYilong/CYLTabBarController) 既支持类似微信的“中规中矩”的 `TabBarController` 样式,并且默认就是微信这种样式,同时又支持类似“微博”或“淘宝闲鱼”这种具有不规则加号按钮的 `TabBarController` 。想支持这种样式,只需自定义一个加号按钮,[CYLTabBarController](https://github.com/ChenYilong/CYLTabBarController) 能检测到它的存在并自动将 `tabBar` 排序好,无需多余操作,并且也预留了一定接口来满足自定义需求。</p>“加号”按钮的样式、frame均在自定义的类中独立实现,不会涉及tabbar相关设置。
4242
4|即使加号按钮超出了tabbar的区域,</p>超出部分依然能响应点击事件 | 红线内的区域均能响应tabbar相关的点击事件,</p>![enter image description here](http://i57.tinypic.com/2r7ndzk.jpg)
4343
5 | 允许指定加号按钮位置 | 效果如下:</p>![enter image description here](http://a64.tinypic.com/2mo0h.jpg) </p>Airbnb-app效果:</p>![enter image description here](http://a63.tinypic.com/2mgk02v.gif)
44-
6| 支持让 `TabBarItem` 仅显示图标,并自动使图标垂直居中 | 效果可见Airbnb-app效果,或者下图</p>![enter image description here](https://cloud.githubusercontent.com/assets/7238866/10777333/5d7811c8-7d55-11e5-88be-8cb11bbeaf90.png)
44+
6| 支持让 `TabBarItem` 仅显示图标,并自动使图标垂直居中,支持自定义TabBar高度 | 效果可见Airbnb-app效果,或者下图</p>![enter image description here](https://cloud.githubusercontent.com/assets/7238866/10777333/5d7811c8-7d55-11e5-88be-8cb11bbeaf90.png)
4545
7 |支持CocoaPods |容易集成
4646
8 |支持Swift项目导入 | 兼容
4747
9 |支持横竖屏 | --
@@ -442,6 +442,8 @@ Airbnb-app效果:
442442
做法如下:
443443
![enter image description here](http://i66.tinypic.com/4rq8ap.jpg)
444444

445+
但是想达到Airbnb-app的效果只有这个接口是不行的,还需要自定义下 `TabBar` 的高度,你需要设置 `CYLTabBarController``tabBarHeight` 属性。你可以在Demo的 `CYLTabBarControllerConfig.m` 中的 `-customizeTabBarAppearance:` 方法中设置。
446+
445447
注:“仅显示图标,并使图标垂直居中”这里所指的“图标”,其所属的类是私有类: `UITabBarSwappableImageView`,所以 `CYLTabBarController` 在相关的接口命名时会包含 `SwappableImageView` 字样。
446448

447449
#### 在 Swift 项目中使用 CYLTabBarController

0 commit comments

Comments
 (0)