Giter VIP home page Giter VIP logo

flextabbar's People

Contributors

austinkettner avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

flextabbar's Issues

pod does not exist

Hi wonderkiln Team,

I found 'WKAwesomeMenu' but 'open-tab-bar' does not exist.

Thanks
Sebastian

Double invocation of commonInit()

We are seeing cases of a double awakeFromNib() invocation of the WKTabBarController instance.
This causes a duplication of the container view, which in turn, might causes problems if you are relying on a particular view hierarchy for additional customisation.

There is a particular setup that might help reproducing this.
We have two segues that point to a WKTabBarController subclass on storyboards.
One storyboard contains the definition of the Scene and another storyboard uses a Storyboard Reference to execute a segue to that scene. The latter is the one that seems to trigger this double invocation.

A proposed fix is to introduce a nil check at the top of commonInit():

func commonInit() {
    if(container != nil){
        return
    }
    container = UIView()
    ...
}

two Error in WKTabBarController.swift swift 4

error in WKTabBarController.swift

  • 1- Error
    Argument of '#selector' refers to instance method 'didChangeOrientation' that is not exposed to Objective-C

NotificationCenter.default.addObserver( self, selector: #selector(didChangeOrientation(_:)), name: NSNotification.Name.UIApplicationDidChangeStatusBarOrientation, object: nil) if let vc = tabBarController(self, viewControllerAtIndex: 0) { changeViewController(vc) }
error:
selector: #selector(didChangeOrientation(_:)),

and

  • 2- Error
    Contextual closure type '(_, WKTabBarItem) -> _' expects 2 arguments, but 1 was used in closure body

open func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize { let proportion = tabBarItems[indexPath.row].proportion let sum = tabBarItems.reduce(0.0) { $0.0 + $0.1.proportion } return CGSize(width: collectionView.bounds.width * CGFloat(proportion / sum), height: collectionView.bounds.height) }

error :
let sum = tabBarItems.reduce(0.0) { $0.0 + $0.1.proportion }

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.