Git Product home page Git Product logo

Comments (6)

mitchellporter avatar mitchellporter commented on July 19, 2024 1

I'm on the Swift-2.0 branch and AutoLayout works fine for me.

from liquidfloatingactionbutton.

polis80cy avatar polis80cy commented on July 19, 2024

hi @syedhassan

Can I see the code please? Your link is dead and I can't get the button to stay put when changing device orientation.

from liquidfloatingactionbutton.

syedhassan avatar syedhassan commented on July 19, 2024

@polis80cy here you go

http://cl.ly/0b1O062O400H

from liquidfloatingactionbutton.

syedhassan avatar syedhassan commented on July 19, 2024

Here is the piece of code that I use to create the buttons

    private lazy var floatingActionButton : LiquidFloatingActionButton = {
        let button = LiquidFloatingActionButton()
        button.animateStyle = .Up
        button.dataSource = self
        button.delegate = self
        button.ogl_setHeight(50)
        button.ogl_setWidth(50)
        button.translatesAutoresizingMaskIntoConstraints = false
        self.view.addSubview(button)
        return button
    }()

    private var cells: [LiquidFloatingCell] = {
        return [LiquidFloatingCell(icon: UIImage(named: "ic_brush_black")!)]
    }()

    func numberOfCells(liquidFloatingActionButton: LiquidFloatingActionButton) -> Int {
        return cells.count
    }

    func cellForIndex(index: Int) -> LiquidFloatingCell {
        return cells[index]
    }

    func liquidFloatingActionButton(liquidFloatingActionButton: LiquidFloatingActionButton, didSelectItemAtIndex index: Int) {
        print("did Tapped! \(index)")
        showModalViewController()
        liquidFloatingActionButton.close()
    }

from liquidfloatingactionbutton.

polis80cy avatar polis80cy commented on July 19, 2024

Thanks a bunch @syedhassan .

from liquidfloatingactionbutton.

haithngn avatar haithngn commented on July 19, 2024
let vConstraints = NSLayoutConstraint.constraints(withVisualFormat: "V:|-[view(56)]-16-|", metrics: nil, views: ["view":floatingButton])
        let hConstraints = NSLayoutConstraint.constraints(withVisualFormat: "H:|-[view(56)]-16-|", metrics: nil, views: ["view":floatingButton])
        
        view.addConstraints(vConstraints)
        view.addConstraints(hConstraints)

Swift 3, Branch master, it's work ok

from liquidfloatingactionbutton.

Related Issues (20)

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.