Skip to content

binary-hood/Clock-iOS-Complete

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Binaryhood

Clock

Our Goal

Get ready to level up your Application development skills! Our upcoming videos will take you on a deep dive into the exciting and intricate world of Swift, exploring increasingly complex components that will help you create even more impressive applications.

What you will create

Immerse yourself in a visually stunning way to track time with our Clock (Aesthetic) application, exclusively designed for iOS. Whether you're working or studying, this simple yet elegant tool offers a fresh perspective on timekeeping that will elevate your productivity and enhance your experience.

What you will learn

  • Explore the art of creating a sleek and sophisticated clock application from scratch using CustomUI, and unlock the potential to personalize your timekeeping experience like never before.
  • Discover the secrets of seamlessly transitioning views for landscape orientation, and take your app development skills to the next level with our step-by-step guide.

Switch Statement

func getImage(num:Int) -> String {
    switch num {
    case 0:
        return "0"
    case 1:
        return "1"
    case 2:
        return "2"
    case 3:
        return "3"
    case 4:
        return "4"
    case 5:
        return "5"
    case 6:
        return "6"
    case 7:
        return "7"
    case 8:
        return "8"
    case 9:
        return "9"
    case 10:
        return "10"
    case 11:
        return "11"
    case 12:
        return "12"
    case 13:
        return "13"
    case 14:
        return "14"
    case 15:
        return "15"
    case 16:
        return "16"
    case 17:
        return "17"
    case 18:
        return "18"
    case 19:
        return "19"
    case 20:
        return "20"
    case 21:
        return "21"
    case 22:
        return "22"
    case 23:
        return "23"
    case 24:
        return "24"
    case 25:
        return "25"
    case 26:
        return "26"
    case 27:
        return "27"
    case 28:
        return "28"
    case 29:
        return "29"
    case 30:
        return "30"
    case 31:
        return "31"
    case 32:
        return "32"
    case 33:
        return "33"
    case 34:
        return "34"
    case 35:
        return "35"
    case 36:
        return "36"
    case 37:
        return "37"
    case 38:
        return "38"
    case 39:
        return "39"
    case 40:
        return "40"
    case 41:
        return "41"
    case 42:
        return "42"
    case 43:
        return "43"
    case 44:
        return "44"
    case 45:
        return "45"
    case 46:
        return "46"
    case 47:
        return "47"
    case 48:
        return "48"
    case 49:
        return "49"
    case 50:
        return "50"
    case 51:
        return "51"
    case 52:
        return "52"
    case 53:
        return "53"
    case 54:
        return "54"
    case 55:
        return "55"
    case 56:
        return "56"
    case 57:
        return "57"
    case 58:
        return "58"
    case 59:
        return "59"
    case 60:
        return "60"
    default:
        return "0"
    }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages