Coder Social home page Coder Social logo

Download button about lightbox HOT 7 OPEN

Wiwaltill avatar Wiwaltill commented on September 28, 2024
Download button

from lightbox.

Comments (7)

Wiwaltill avatar Wiwaltill commented on September 28, 2024 1

@fukemy Thank you for the code. Unfortunately, I'm having a few problems - could you send me the code for the entire Swift file?
That would be very helpful.

from lightbox.

alvincrisuy avatar alvincrisuy commented on September 28, 2024 1

For the others. I make it work by the following code from @fukemy

`import UIKit
import Lightbox

class LightBoxVC: LightboxController {

lazy var downloadButton: UIButton! = {
    let downloadButton = UIButton(frame: CGRect(x: 0, y: 0, width: 36, height: 36))
    downloadButton.backgroundColor = UIColor.white.withAlphaComponent(0.5)
    downloadButton.setImage(UIImage(named: "download"), for: .normal)
    downloadButton.addTarget(self, action: #selector(self.saveImageToLocal), for: .touchUpInside)
    return downloadButton
}()

public override init(images: [LightboxImage], startIndex: Int = 0) {
       
   super.init(images: images, startIndex: startIndex)
   
   self.footerView.addSubview(self.downloadButton!)
   
   var frame = self.downloadButton!.frame
   frame.origin.x = UIScreen.main.bounds.width / 2 - 18 - 36
   frame.origin.y = 5
   self.downloadButton?.frame = frame

}

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

@objc func saveImageToLocal() {
    print("saveImageToLocal")
}

}`

IMG_7050

from lightbox.

3lvis avatar 3lvis commented on September 28, 2024

Hi @Wiwaltill,

Lightbox is currently in maintenance mode, no new features or additions are planned. Only bug fixes.

from lightbox.

Wiwaltill avatar Wiwaltill commented on September 28, 2024

Very sad. But thank you for the quick answer.

Maybe it is still possible to keep the idea in mind and include it in a possible further development.

from lightbox.

fukemy avatar fukemy commented on September 28, 2024

Hi, i added download + share button, do you still need this feature?

from lightbox.

Wiwaltill avatar Wiwaltill commented on September 28, 2024

Yes! This function would definitely still be very useful. @fukemy

from lightbox.

fukemy avatar fukemy commented on September 28, 2024

@Wiwaltill just create the class extend LightBoxController then override init function like this:

 public override init(images: [LightboxImage], startIndex: Int = 0) {
        
        super.init(images: images, startIndex: startIndex)
        
        self.downloadButton = RoundButton(frame: CGRect(0, 0, 36, 36))
        self.downloadButton?.setImage(UIImage(named: "ic_download"), for: .normal)
        self.downloadButton?.rounded = true
        self.downloadButton?.backgroundColor = UIColor.white.withAlphaComponent(0.5)
        self.downloadButton!.addTarget(self, action: #selector(self.saveImageToLocal), for: .touchUpInside)
        self.footerView.addSubview(self.downloadButton!)
        self.downloadButton?.applyShadow(isApply: true)
        
        var frame = self.downloadButton!.frame
        frame.origin.x = UIScreen.main.bounds.width / 2 - 18 - 36
        frame.origin.y = 5
        self.downloadButton?.frame = frame
        
        self.shareButton = RoundButton(frame: CGRect(0, 0, 36, 36))
        self.shareButton?.setImage(UIImage(named: "ic_share"), for: .normal)
        self.shareButton?.rounded = true
        self.shareButton?.backgroundColor = UIColor.white.withAlphaComponent(0.5)
        self.shareButton!.addTarget(self, action: #selector(self.share), for: .touchUpInside)
        self.shareButton?.applyShadow(isApply: true)
        self.footerView.addSubview(self.shareButton!)
        
        var shareFrame = self.shareButton!.frame
        shareFrame.origin.x = UIScreen.main.bounds.width / 2 + 18
        shareFrame.origin.y = 5
        self.shareButton?.frame = shareFrame
        
    }

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.