Giter Site home page Giter Site logo

rakutou / estabbarcontroller Goto Github PK

View Code? Open in Web Editor NEW

This project forked from eggswift/estabbarcontroller

0.0 2.0 0.0 2.84 MB

Highly customizable tabBarController and tabBarItem, you can easily customize ui style or add animation etc . Using swift!

License: MIT License

Ruby 0.46% Swift 69.44% Objective-C 30.10%

estabbarcontroller's Introduction

![logo](logo.png)

CocoaPods Carthage Compatible Swift 2.2 Twitter Twitter

ESTabBarController is a Swift module to customize special tabbar item animations, and it's inherited from UITabBarController. 中文介绍

Why?

There are greate possibilities for us to customize UITabBar. For instance, changing the font, adding some animations, setting a larger item than default. However it's hard to realize these only by using UITabBarItem.

With ESTabBarController, You can easily realize these and more !

  1. Nest any UITabBarController and UINavigationController objects as you want
  2. Support Portrait, Landscape and Split View
  3. Add more extra tabs to the More Item automatically
  4. Changeable tabbar item font and images, customize irregular items
  5. Some pre-set special select, deselect and slected animations
  6. Hijack click event to jump page more flexibly
  7. Realize user-guiding animation
  8. Much more...

Requirement

  • Xcode 7.0 or later
  • iOS 8.0 or later
  • ARC

Installation

CocoaPods

pod "ESTabBarController-swift"

Carthage

github "eggswift/ESTabBarController"

Manually

git clone https://github.com/eggswift/ESTabBarController.git
open ESTabBarController

Usage

Handle UI layers

Usually, there are two ways to handle layers when using UITabBarController:

First:

    - UITabBarController
    --- UINaviBarController
    ----- ViewController
    ------- SubViewController

Second:

    - UINaviBarController
    --- UITabBarController
    ----- ViewController
    ------- SubViewController

In the first situation, need to set hidesBottomBarWhenPushed = true when pushing subView. But not in the second one.

In ESTabBarController, to be compatible with the two ways by adding corresponding container view to UITabBar:

    func example() {
        let vc = ESTabBarController.init()
        vc.title = "Example"

        let v1          = ExampleViewController()
        let v2          = ExampleViewController()
        let v3          = ExampleViewController()
        let v4          = ExampleViewController()
        let v5          = ExampleViewController()

        v1.tabBarItem   = ESTabBarItem.init(content: ESTabBarItemContent.init(animator: ExampleBaseAnimator.init()))
        v2.tabBarItem   = ESTabBarItem.init(content: ESTabBarItemContent.init(animator: ExampleBaseAnimator.init()))
        v3.tabBarItem   = ESTabBarItem.init(content: ESTabBarItemContent.init(animator: ExampleBaseAnimator.init()))
        v4.tabBarItem   = ESTabBarItem.init(content: ESTabBarItemContent.init(animator: ExampleBaseAnimator.init()))
        v5.tabBarItem   = ESTabBarItem.init(content: ESTabBarItemContent.init(animator: ExampleBaseAnimator.init()))

        v1.tabBarItem.image = UIImage.init(named: "home")
        v2.tabBarItem.image = UIImage.init(named: "find")
        v3.tabBarItem.image = UIImage.init(named: "photo")
        v4.tabBarItem.image = UIImage.init(named: "favor")
        v5.tabBarItem.image = UIImage.init(named: "me")
        v1.tabBarItem.selectedImage = UIImage.init(named: "home_1")
        v2.tabBarItem.selectedImage = UIImage.init(named: "find_1")
        v3.tabBarItem.selectedImage = UIImage.init(named: "photo_1")
        v4.tabBarItem.selectedImage = UIImage.init(named: "favor_1")
        v5.tabBarItem.selectedImage = UIImage.init(named: "me_1")

        v1.title        = "Home"
        v2.title        = "Find"
        v3.title        = "Photo"
        v4.title        = "List"
        v5.title        = "Me"

        let controllers = [v1, v2, v3, v4, v5]
        vc.viewControllers = controllers

        let nc = ExampleNavigationController.init(rootViewController: vc)
        self.presentViewController(nc, animated: true) { 

        }
    }

For more examples, look over the following functions inExample

    func systemStytle() 
    func naviContainTabBarStytle() 
    func tabBarContainNaviStytle()

Demo:

UIMoreNavigationController

If the count ofViewControllers is more than the default count,UITabBarController will combine extra Tabs to More Tab,and ESTabBarController support this situation well. By doing this:

(moreNavigationController.parentViewController != nil) ? items.count - 1 : items.count 

to ensure the count of UITabBarItems which are need to add Container,if UITabBarController's object UIMoreNavigationController is exist and the parentViewController is not nil, then show the More Tab

Demo:

Add animations to TabBarItem

ESTabBarController can customize the TabBar's style and presence, so you can customize style and animation by inhierting from ESTabBarItemContent or ESTabBarItemAnimator respectively. ESTabBarItemAnimator decide when the animation happens by realizing the ESTabBarItemAnimatorProtocol. Of cause you can customize your own Animator, just inhiert from ESTabBarItemAnimatorProtocol. Example realized some customized Animator, you can look over ExampleBackgroundAnimator, ExampleSpreadAnimator and ExampleBounceAnimator, and get how they are realized.

Demo:

Comstomize click event

You can determine whether UITabBarController response to click and switch the corresponding index by setting the value of shouldHijackHandler if false indicate the current event is been hijacked. And the hijackHandle realize to customize how to handle click event. Code:

    let vc = ESTabBarController.init()
    vc.title = "Example"
    vc.shouldHijackHandler = {
        tabbarController, viewController, index in
        if index == 2 {
            return true
        }
        return false
    }

    vc.hijackHandler = {
        [weak vc] tabbarController, viewController, index in
        if index == 2 {
            let minseconds = 0.2 * Double(NSEC_PER_SEC)
            let dtime = dispatch_time(DISPATCH_TIME_NOW, Int64(minseconds))
            dispatch_after(dtime, dispatch_get_main_queue() , {
                let v1 = ExampleViewController()
                let n1 = ExampleNavigationController.init(rootViewController: v1)
                v1.title = "Example"
                vc?.presentViewController(n1, animated: true, completion: nil)
            })
        }
    }

Demo:

User-Guding animation

Example pre-set a user-guding animation to attract user to tap one of the Tabs. by inheriting ESTabBarItemContent to realize TabBar style. Code:

viewController.tabBarItem = ESTabBarItem.init(content: ExampleImpliesTabBarItemContent.init(animator: ExampleBackgroundAnimator.init(special: true)))

Demo:

How to customize

If situations in the Example are not suitable for you, you will need to customize you own TabBar. You can modify the UITabBarItem style as you want by inhierting from ESTabBarItemContent. Pay attention: Please set userInteractionEnabled = false to guarant ESTabBarViewController can handle customized TabBar click event. To realize this by instancing ESTabBarItemAnimator.And if any object is obey <ESTabBarItemAnimatorProtocol> , You can customize animation as you want. For example: ExampleBounceAnimator, you need create a method:

    func bounceAnimation(view: UIView) {
        let impliesAnimation = CAKeyframeAnimation(keyPath: "transform.scale")
        impliesAnimation.values = [1.0 ,1.4, 0.9, 1.15, 0.95, 1.02, 1.0]
        impliesAnimation.duration = duration * 2
        impliesAnimation.calculationMode = kCAAnimationCubic
        view.layer.addAnimation(impliesAnimation, forKey: nil)
    }

ExampleBounceAnimator inhierted from ESTabBarItemAnimator, realize <ESTabBarItemAnimatorProtocol>

    public override func selectAnimation(content content: UIView, animated: Bool, completion: (() -> ())?) {
        super.selectAnimation(content: content, animated: animated, completion: completion)
        if let content = content as? ESTabBarItemContent {
            /// Add animation here
            self.bounceAnimation(content.imageView)
        }
    }

    public override func reselectAnimation(content content: UIView, animated: Bool, completion: (() -> ())?) {
        super.reselectAnimation(content: content, animated: animated, completion: completion)
        if let content = content as? ESTabBarItemContent {
            /// Add animation here
            self.bounceAnimation(content.imageView)
        }
    }

    public override func deselectAnimation(content content: UIView, animated: Bool, completion: (() -> ())?) {
        super.deselectAnimation(content: content, animated: animated, completion: completion)
    }

Something unfinished

  1. Use AutoLayout instead of pure code will be better to realize the Container portion UI.
  2. The 'More' has some issues When the iPadx or iPhone6x Plus devices is landscape, Because of thankless of handling itemWidthand itemSpacing when doing the Containers' layout.
  3. ...

Thanks

About

ESTabBarController is developed and maintained by lihao.If you have any doubt or questions, Welcome to open issues to discuss.

If you want contribute to ESTabBarController, Please Pull Request,I'll as soon as possible to deal with.

Twitter URL Twitter Follow

License

The MIT License (MIT)

Copyright (c) 2013-2015 eggswift. All rights reserved.

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.

estabbarcontroller's People

Contributors

eggswift avatar

Watchers

James Cloos avatar Harimoto avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.