Skip to content

Instantly share code, notes, and snippets.

@angelabauer
Created August 13, 2019 11:57
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • 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
}
}
@Beyonder27
Copy link

Screen Shot 2021-11-09 at 12 17 13 PM

@anujsoni10001
Copy link

import UIKit

class ViewController: UIViewController {

@IBOutlet weak var diceImageViewOne: UIImageView!

@IBOutlet weak var diceImageViewTwo: UIImageView!

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view.
    diceImageViewOne.image = #imageLiteral(resourceName: "DiceSix")
    diceImageViewOne.alpha = 0.5
    diceImageViewTwo.image = #imageLiteral(resourceName: "DiceTwo")
}

}

@R-Ivan-V
Copy link

import UIKit

class ViewController: UIViewController {

@IBOutlet weak var diceImageView1: UIImageView!

override func viewDidLoad() {
    super.viewDidLoad()

    diceImageView1.image = UIImage(named: "DiceSix")
    diceImageView1.alpha = 0.5
    
}

}

@SwapnaliMandlik
Copy link

import UIKit

class ViewController: UIViewController {

@IBOutlet weak var diceImageView1: UIImageView!

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

}

@MattGoudreau
Copy link

Screen Shot 2022-01-15 at 1 55 09 PM

@uroborose
Copy link

스크린샷 2022-01-19 오후 12 53 23

it's not working at the video. find some other way

@donngraphics
Copy link

I would definitely recommend using the syntax of:

diceImageView1.image = UIImage(named: "name")

Where "name" is the name of the image wrapped in quotes. This syntax seems to be a bit more reliable.

@Jayamohan27
Copy link

hi everyone this is my practise shot
Screenshot 2022-06-19 at 21 21 29

@vldklsnk
Copy link

Снимок экрана 2022-06-28 в 23 25 45

I write code, but nothing changes for me

@AndresCastilloPlata
Copy link

Captura de Pantalla 2022-07-08 a la(s) 14 42 22
"imageliteral" didn't work for me but using "UIImage" worked.

@nemarkoo
Copy link

All done!

Screenshot 2022-09-26 at 15 35 58

@josileudo
Copy link

Sounds good!

image

@juraabdullaev
Copy link

Keep Learning!!!
Screenshot 2022-11-08 at 07 53 01

@halfnine-P
Copy link

cool!
Screenshot 2022-12-13 at 23 12 05

@asherginting
Copy link

Good

image

@moldirs429
Copy link

Screenshot 2023-02-05 at 16 43 56

works!

@ITsarik22
Copy link

ITsarik22 commented Feb 27, 2023

Снимок экрана 2023-02-27 в 22 08 14

@ERaff83
Copy link

ERaff83 commented May 28, 2023

I'm getting a Thread1: breakpoint 1.6 (1) any guidance on how to fix it?

@nobalking
Copy link

I couldn't even prompt the imageliteral code, it's not exactly same as what showed on the tutorial. Anyone knows what code to type? Running on Xcode 14.3.1

@melekzurnaci
Copy link

@nobalking you can use like below

diceImageViewOne.image = UIImage(imageLiteralResourceName:"DiceSix");

@codebwoy
Copy link

Screenshot 2023-06-26 at 00 26 36

I am now starting to learn iOS development and finding it interesting. I hope i am not alone and not too late here!

@codebwoy
Copy link

I couldn't even prompt the imageliteral code, it's not exactly same as what showed on the tutorial. Anyone knows what code to type? Running on Xcode 14.3.1

@nobalking you are correct! i also experienced your problem. I think the problem was as a result of the newer version of xcode you are using, since it is newer than the one Angela used in the tutorial.

The real code should be diceImageView1.image = #imageLiteral()

You can also find more answers to your problems using stackoverflow.com. I hope this will help!

@codebwoy
Copy link

Screenshot 2023-06-26 at 01 14 28

new challlenge for rolling to dice 2 successful!

@wellbegen
Copy link

Screenshot 2023-07-06 at 5 34 19 PM

@wellbegen
Copy link

was great until i started the Alpha step , green background took over everything !?

@Polyrhythmik
Copy link

@wellbegen In the document outline pane you can sort the layers of objects by dragging each object. It looks like you need to move the background image to the back so that the other objects are visible.

@ShriGaneshPurohit
Copy link

Screenshot 2023-10-09 at 8 12 52 PM

new challenge for rolling to dice 2 successfully completed!

@Ayushjhax
Copy link

image
Thread 1: Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value

i am getting this error

@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?

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