Giter Club home page Giter Club logo

Comments (3)

margox avatar margox commented on June 5, 2024 3

you can create a enhanced LightboxController:

import Lightbox

public class EnhancedLightboxController: LightboxController {

  public override init(images: [LightboxImage], startIndex: Int = 0) {

    super.init(images: images, startIndex: startIndex)

    // here you can do what you want .
    self.footerView.addSubview(/* your stuff */)

  }

  required public init?(coder aDecoder: NSCoder) {
    fatalError("init(coder:) has not been implemented")
  }

}

and then use EnhancedLightboxController instead of LightboxController:

let controller = EnhancedLightboxController(images: lightBoxImages, startIndex: 1)
present(controller, animated: true, completion: nil)

from lightbox.

jyounus avatar jyounus commented on June 5, 2024

I will give that a try, thanks!

from lightbox.

annjawn avatar annjawn commented on June 5, 2024

I tried this method and the button shows up in the bottom, but it's not tappable. per se, when I try to tap the button the BottomView dissapears and the touchUpInside doesn't even register. What am I doing wrong?

let btn = UIButton(frame: CGRect(x: self.view.frame.midX - 80, y: frame.midY - 100, width: 160, height: 35))
btn.setTitle("Remove", for: .normal)
btn.addTarget(self, action: #selector(removed(_:)), for: .touchUpInside)
self.footerView.addSubview(btn)

from lightbox.

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.