diff --git a/LCTabBarController.podspec b/LCTabBarController.podspec index ea1c969..a0bc05d 100644 --- a/LCTabBarController.podspec +++ b/LCTabBarController.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "LCTabBarController" - s.version = "1.3.5" + s.version = "1.3.6" s.summary = "A amazing and highly customized tabBarController! You could almost customize 100% of the properties! Support: http://LeoDev.me" s.homepage = "https://github.com/iTofu/LCTabBarController" s.license = { :type => "MIT", :file => "LICENSE" } diff --git a/LCTabBarController/LCTabBar.h b/LCTabBarController/LCTabBar.h index cc63a79..50ad3b2 100644 --- a/LCTabBarController/LCTabBar.h +++ b/LCTabBarController/LCTabBar.h @@ -3,8 +3,27 @@ // LCTabBarControllerDemo // // Created by Leo on 15/12/2. -// Copyright © 2015年 Leo. All rights reserved. +// Copyright © 2015 Leo // +// Copyright (c) 2015-2017 Leo +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #import @@ -15,6 +34,9 @@ @optional +/** + TabBar's item be selected handler + */ - (void)tabBar:(LCTabBar *)tabBarView didSelectedItemFrom:(NSInteger)from to:(NSInteger)to; @end @@ -24,38 +46,53 @@ @interface LCTabBar : UIView /** - * Tabbar item title color + * TabBar item title color */ @property (nonatomic, strong) UIColor *itemTitleColor; /** - * Tabbar selected item title color + * TabBar selected item title color */ @property (nonatomic, strong) UIColor *selectedItemTitleColor; /** - * Tabbar item title font + * TabBar item title font */ @property (nonatomic, strong) UIFont *itemTitleFont; /** - * Tabbar item's badge title font + * TabBar item's badge title font */ @property (nonatomic, strong) UIFont *badgeTitleFont; /** - * Tabbar item image ratio + * TabBar item image ratio */ @property (nonatomic, assign) CGFloat itemImageRatio; +/** + * TabBar's item count + */ @property (nonatomic, assign) NSInteger tabBarItemCount; +/** + * TabBar's selected item + */ @property (nonatomic, strong) LCTabBarItem *selectedItem; +/** + * TabBar items array + */ @property (nonatomic, strong) NSMutableArray *tabBarItems; +/** + * TabBar delegate + */ @property (nonatomic, weak) id delegate; +/** + * Add tabBar item + */ - (void)addTabBarItem:(UITabBarItem *)item; @end diff --git a/LCTabBarController/LCTabBar.m b/LCTabBarController/LCTabBar.m index 28321eb..3c6f155 100644 --- a/LCTabBarController/LCTabBar.m +++ b/LCTabBarController/LCTabBar.m @@ -3,8 +3,27 @@ // LCTabBarControllerDemo // // Created by Leo on 15/12/2. -// Copyright © 2015年 Leo. All rights reserved. +// Copyright © 2015 Leo // +// Copyright (c) 2015-2017 Leo +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #import "LCTabBar.h" #import "LCTabBarItem.h" diff --git a/LCTabBarController/LCTabBarBadge.h b/LCTabBarController/LCTabBarBadge.h index 3cc4bdf..9fb4627 100644 --- a/LCTabBarController/LCTabBarBadge.h +++ b/LCTabBarController/LCTabBarBadge.h @@ -3,19 +3,44 @@ // LCTabBarControllerDemo // // Created by Leo on 15/12/2. -// Copyright © 2015年 Leo. All rights reserved. +// Copyright © 2015 Leo // +// Copyright (c) 2015-2017 Leo +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #import @interface LCTabBarBadge : UIButton +/** + * TabBar item badge value + */ @property (nonatomic, copy) NSString *badgeValue; +/** + * TabBar's item count + */ @property (nonatomic, assign) NSInteger tabBarItemCount; /** - * Tabbar item's badge title font + * TabBar item's badge title font */ @property (nonatomic, strong) UIFont *badgeTitleFont; diff --git a/LCTabBarController/LCTabBarBadge.m b/LCTabBarController/LCTabBarBadge.m index 50b7111..ed6db87 100644 --- a/LCTabBarController/LCTabBarBadge.m +++ b/LCTabBarController/LCTabBarBadge.m @@ -3,8 +3,27 @@ // LCTabBarControllerDemo // // Created by Leo on 15/12/2. -// Copyright © 2015年 Leo. All rights reserved. +// Copyright © 2015 Leo // +// Copyright (c) 2015-2017 Leo +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #import "LCTabBarBadge.h" #import "LCTabBarCONST.h" diff --git a/LCTabBarController/LCTabBarCONST.h b/LCTabBarController/LCTabBarCONST.h index ff54d21..4de5b3a 100644 --- a/LCTabBarController/LCTabBarCONST.h +++ b/LCTabBarController/LCTabBarCONST.h @@ -3,8 +3,27 @@ // LCTabBarControllerDemo // // Created by Leo on 15/12/2. -// Copyright © 2015年 Leo. All rights reserved. +// Copyright © 2015 Leo // +// Copyright (c) 2015-2017 Leo +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #import diff --git a/LCTabBarController/LCTabBarController.h b/LCTabBarController/LCTabBarController.h index 1134414..b87dfc8 100644 --- a/LCTabBarController/LCTabBarController.h +++ b/LCTabBarController/LCTabBarController.h @@ -3,44 +3,66 @@ // LCTabBarControllerDemo // // Created by Leo on 15/12/2. -// Copyright © 2015年 Leo. All rights reserved. +// Copyright © 2015 Leo // -// GitHub: https://github.com/iTofu/LCTabBarController -// Blog: http://LeoDev.me +// Copyright (c) 2015-2017 Leo // -// V 1.3.5 +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #import +#import "LCTabBar.h" @interface LCTabBarController : UITabBarController /** - * Tabbar item title color + * TabBar + */ +@property (nonatomic, strong) LCTabBar *lcTabBar; + +/** + * TabBar item title color */ @property (nonatomic, strong) UIColor *itemTitleColor; /** - * Tabbar selected item title color + * TabBar selected item title color */ @property (nonatomic, strong) UIColor *selectedItemTitleColor; /** - * Tabbar item title font + * TabBar item title font */ @property (nonatomic, strong) UIFont *itemTitleFont; /** - * Tabbar item's badge title font + * TabBar item's badge title font */ @property (nonatomic, strong) UIFont *badgeTitleFont; /** - * Tabbar item image ratio + * TabBar item image ratio */ @property (nonatomic, assign) CGFloat itemImageRatio; /** - * Remove origin controls, for `- popToRootViewController` + * System will display the original controls so you should call this line when you change any tabBar item, like: `- popToRootViewController`, `someViewController.tabBarItem.title = xx`, etc. + * Remove origin controls */ - (void)removeOriginControls; diff --git a/LCTabBarController/LCTabBarController.m b/LCTabBarController/LCTabBarController.m index b1b1014..2f6f601 100644 --- a/LCTabBarController/LCTabBarController.m +++ b/LCTabBarController/LCTabBarController.m @@ -3,18 +3,34 @@ // LCTabBarControllerDemo // // Created by Leo on 15/12/2. -// Copyright © 2015年 Leo. All rights reserved. +// Copyright © 2015 Leo // +// Copyright (c) 2015-2017 Leo +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #import "LCTabBarController.h" -#import "LCTabBar.h" #import "LCTabBarCONST.h" #import "LCTabBarItem.h" @interface LCTabBarController () -@property (nonatomic, strong) LCTabBar *lcTabBar; - @end @implementation LCTabBarController diff --git a/LCTabBarController/LCTabBarItem.h b/LCTabBarController/LCTabBarItem.h index 18c69cf..169485e 100644 --- a/LCTabBarController/LCTabBarItem.h +++ b/LCTabBarController/LCTabBarItem.h @@ -3,42 +3,70 @@ // LCTabBarControllerDemo // // Created by Leo on 15/12/2. -// Copyright © 2015年 Leo. All rights reserved. +// Copyright © 2015 Leo // +// Copyright (c) 2015-2017 Leo +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #import @interface LCTabBarItem : UIButton +/** + * TabBar item + */ @property (nonatomic, strong) UITabBarItem *tabBarItem; +/** + * TabBar's item count + */ @property (nonatomic, assign) NSInteger tabBarItemCount; /** - * Tabbar item title color + * TabBar item title color */ @property (nonatomic, strong) UIColor *itemTitleColor; /** - * Tabbar selected item title color + * TabBar selected item title color */ @property (nonatomic, strong) UIColor *selectedItemTitleColor; /** - * Tabbar item title font + * TabBar item title font */ @property (nonatomic, strong) UIFont *itemTitleFont; /** - * Tabbar item's badge title font + * TabBar item's badge title font */ @property (nonatomic, strong) UIFont *badgeTitleFont; /** - * Tabbar item image ratio + * TabBar item image ratio */ @property (nonatomic, assign) CGFloat itemImageRatio; +/** + * TabBar item init func + */ - (instancetype)initWithItemImageRatio:(CGFloat)itemImageRatio; @end diff --git a/LCTabBarController/LCTabBarItem.m b/LCTabBarController/LCTabBarItem.m index d9ecd0c..159e830 100644 --- a/LCTabBarController/LCTabBarItem.m +++ b/LCTabBarController/LCTabBarItem.m @@ -3,8 +3,27 @@ // LCTabBarControllerDemo // // Created by Leo on 15/12/2. -// Copyright © 2015年 Leo. All rights reserved. +// Copyright © 2015 Leo // +// Copyright (c) 2015-2017 Leo +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. #import "LCTabBarItem.h" #import "LCTabBarBadge.h" diff --git a/LCTabBarControllerDemo.xcodeproj/project.pbxproj b/LCTabBarControllerDemo.xcodeproj/project.pbxproj index 0f81343..80f96b9 100644 --- a/LCTabBarControllerDemo.xcodeproj/project.pbxproj +++ b/LCTabBarControllerDemo.xcodeproj/project.pbxproj @@ -150,6 +150,7 @@ TargetAttributes = { B32570A11C0EAD0200B820A6 = { CreatedOnToolsVersion = 7.1.1; + DevelopmentTeam = 4BZ2VM448J; }; }; }; @@ -290,10 +291,11 @@ isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + DEVELOPMENT_TEAM = 4BZ2VM448J; INFOPLIST_FILE = LCTabBarControllerDemo/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 7.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.leodong.LCTabBarControllerDemo; + PRODUCT_BUNDLE_IDENTIFIER = me.leodev.LCTabBarControllerDemo; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Debug; @@ -302,10 +304,11 @@ isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + DEVELOPMENT_TEAM = 4BZ2VM448J; INFOPLIST_FILE = LCTabBarControllerDemo/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 7.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.leodong.LCTabBarControllerDemo; + PRODUCT_BUNDLE_IDENTIFIER = me.leodev.LCTabBarControllerDemo; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Release; diff --git a/LCTabBarControllerDemo/HomeVC.m b/LCTabBarControllerDemo/HomeVC.m index 3518bed..93adffe 100644 --- a/LCTabBarControllerDemo/HomeVC.m +++ b/LCTabBarControllerDemo/HomeVC.m @@ -31,6 +31,10 @@ - (void)leftBarButtonItemClicked { self.tabBarItem.image = [UIImage imageNamed:@"tabbar_discover"]; self.tabBarItem.selectedImage = [UIImage imageNamed:@"tabbar_discover_selected"]; self.tabBarItem.title = @"Woo!"; + + // Key code + // System will display the original controls so you should call this line when you change any tabBar item + [(LCTabBarController *)self.tabBarController removeOriginControls]; } - (void)rightBarButtonItemClicked { diff --git a/LCTabBarControllerDemo/Info.plist b/LCTabBarControllerDemo/Info.plist index d338c77..eb0c65d 100644 --- a/LCTabBarControllerDemo/Info.plist +++ b/LCTabBarControllerDemo/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.0 + 1.3.6 CFBundleSignature ???? CFBundleVersion @@ -31,6 +31,8 @@ UISupportedInterfaceOrientations UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight UISupportedInterfaceOrientations~ipad diff --git a/README.md b/README.md index fc588d6..f2253b8 100644 --- a/README.md +++ b/README.md @@ -194,9 +194,15 @@ Just drag the LCTabBarController folder into your project. ## ChangeLog +### V 1.3.6 + +* About [#15](https://github.com/iTofu/LCTabBarController/issues/15), public `lcTabBar`. + + ### V 1.3.5 -* Fix #13,Merged [sunnysuhappy](https://github.com/sunnysuhappy)'s pull #14。 +* Fix [#13](https://github.com/iTofu/LCTabBarController/issues/13),Merged [sunnysuhappy](https://github.com/sunnysuhappy)'s pull [#14](https://github.com/iTofu/LCTabBarController/issues/14)。 + ### V 1.3.3 @@ -212,8 +218,7 @@ Just drag the LCTabBarController folder into your project. ### V 1.2.7 -* Bug fixed: [Issues 3](https://github.com/iTofu/LCTabBarController/issues/3), thanks [Sesadev](https://github.com/Sesadev)'s commit! - +* Bug fixed: [#3](https://github.com/iTofu/LCTabBarController/issues/3), thanks for [Sesadev](https://github.com/Sesadev)'s commit! ### V 1.2.6 @@ -311,14 +316,18 @@ Just drag the LCTabBarController folder into your project. ## Support -* If you have any question, just [commit a issue](https://github.com/iTofu/LCTabBarController/issues/new)! Thank you! +* If you have any question, just [commit a issue](https://github.com/iTofu/LCTabBarController/issues/new). + +* Mail: `echo bGVvZGF4aWFAZ21haWwuY29tCg== | base64 -D` || `echo ZGV2dGlwQDE2My5jb20K | base64 -D` + +* Blog: https://LeoDev.me -* Mail: devtip@163.com +* Friendly sponsorship with [Alipay or Wechat Pay](https://cdnqiniu.leodev.me/paid_to_leo.png), thank you! -* Blog: http://LeoDev.me + ![Leo](https://cdnqiniu.leodev.me/paid_to_leo.png) ## License -[MIT License](http://opensource.org/licenses/MIT) +LCTabBarController is released under the [MIT License](https://github.com/iTofu/LCTabBarController/blob/master/LICENSE). diff --git a/README_zh-CN.md b/README_zh-CN.md index d1590ea..1b1be79 100644 --- a/README_zh-CN.md +++ b/README_zh-CN.md @@ -198,12 +198,19 @@ pod 'LCTabBarController' # Podfile ### V 1.3.5 -* 修复 #13,Merged [sunnysuhappy](https://github.com/sunnysuhappy)'s pull #14。 +* [#15](https://github.com/iTofu/LCTabBarController/issues/15) 相关,公开 `lcTabBar` 属性。 + + +### V 1.3.5 + +* 修复 [#13](https://github.com/iTofu/LCTabBarController/issues/13),Merged [sunnysuhappy](https://github.com/sunnysuhappy)'s pull [#14](https://github.com/iTofu/LCTabBarController/issues/14)。 + ### V 1.3.3 * 更新 CocoaPods 来源。 + ### V 1.3.0 * 修复使用 Swift + CocoaPods 时 bundle 找不到的问题。 @@ -295,14 +302,18 @@ pod 'LCTabBarController' # Podfile ## 联系 -* 有问题请直接提交 [Issue](https://github.com/iTofu/LCTabBarController/issues/new) :) +* 有问题请直接新建 [Issue](https://github.com/iTofu/LCTabBarController/issues/new) :) + +* Mail: `echo bGVvZGF4aWFAZ21haWwuY29tCg== | base64 -D` || `echo ZGV2dGlwQDE2My5jb20K | base64 -D` + +* Blog: https://LeoDev.me -* Mail: devtip@163.com +* Friendly sponsorship with [Alipay or Wechat Pay](https://cdnqiniu.leodev.me/paid_to_leo.png), thank you! -* Blog: http://LeoDev.me + ![Leo](https://cdnqiniu.leodev.me/paid_to_leo.png) ### 授权 -本项目采用 [MIT license](http://opensource.org/licenses/MIT) 开源,你可以利用采用该协议的代码做任何事情,只需要继续继承 MIT 协议即可。 +LCTabBarController is released under the [MIT License](https://github.com/iTofu/LCTabBarController/blob/master/LICENSE).