Skip to content

grafon100/Lamp_On_Off

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation


"Lamp On/Off" 💡


it's my first app.

It's just a funny app 😎


I used:

  • Image view
  • Button

When you click button "ON" Lamp is on. The title button change on "OFF", a color button change with orange on red and background change with brown on light yellow.

When you click button "OFF" Lamp is off. The title button change on "ON", a color button change with red on orange and background change with light yellow on brown.


Example a code for click button:

    @IBAction func click1(_ sender: UIButton) {
      
        let buttonText = button.currentTitle
        
        if buttonText == "ON"{
            imageLampe.image = #imageLiteral(resourceName: "on")
            button.backgroundColor = #colorLiteral(red: 0.9372549057, green: 0.3490196168, blue: 0.1921568662, alpha: 1)
            button.setTitle("OFF", for: .normal)
            backColor.backgroundColor = #colorLiteral(red: 0.9764705896, green: 0.850980401, blue: 0.5490196347, alpha: 1)

        } else if buttonText == "OFF"{
            imageLampe.image = #imageLiteral(resourceName: "off")
            button.setTitle("ON", for: .normal)
            button.backgroundColor = #colorLiteral(red: 0.9830867648, green: 0.5284075141, blue: 0, alpha: 1)
            backColor.backgroundColor = #colorLiteral(red: 0.2460144162, green: 0.08992823213, blue: 0, alpha: 1)
        }   
    }

Example app:

All images using in this app was take with this website.
Type of licence: Non-Commercial

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages