Skip to content

Instantly share code, notes, and snippets.

@angelabauer
Created August 13, 2019 11:57
Show Gist options
  • Save angelabauer/9d94ee98153b84681a63e7744077c9f0 to your computer and use it in GitHub Desktop.
Save angelabauer/9d94ee98153b84681a63e7744077c9f0 to your computer and use it in GitHub Desktop.
//
// ViewController.swift
// Dicee-iOS13
//
// Created by Angela Yu on 11/06/2019.
// Copyright © 2019 London App Brewery. All rights reserved.
//
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var diceImageView1: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
diceImageView1.image = #imageLiteral(resourceName: "DiceSix")
//Who What Value
diceImageView1.alpha = 0.5
}
}
@Aadileb
Copy link

Aadileb commented Feb 7, 2024

can someone explain why its showing Five dots instead of four while doing opaq
Screenshot 2024-02-07 at 1 57 16 PM

@lilianaBasak
Copy link

Screenshot 2024-02-28 at 11 08 56 PM (2)
I'm trying to do this, but since the course is from 2019, it's not the same now, can someone show how they did it?

@Nandha2403
Copy link

Nandha2403 commented Apr 4, 2024

Screenshot 2024-04-04 at 4 46 15 PM
Haha

@Aryanmittal23
Copy link

import UIKit

class ViewController: UIViewController {

@IBOutlet weak var diceImageView1: UIImageView!

/// <#Description#>
override func viewDidLoad() {
    super.viewDidLoad()
    
    diceImageView1.image = #imageLiteral(resourceName: "DiceSix")
    diceImageView1.alpha = 0.5
}

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment