Skip to content

Instantly share code, notes, and snippets.

View mikaelacaron's full-sized avatar
🦄

Mikaela Caron mikaelacaron

🦄
View GitHub Profile
@mikaelacaron
mikaelacaron / Apple_mobile_device_types.txt
Created January 23, 2023 20:03 — forked from adamawolf/Apple_mobile_device_types.txt
List of Apple's mobile device codes types a.k.a. machine ids (e.g. `iPhone1,1`, `Watch1,1`, etc.) and their matching product names
i386 : iPhone Simulator
x86_64 : iPhone Simulator
arm64 : iPhone Simulator
iPhone1,1 : iPhone
iPhone1,2 : iPhone 3G
iPhone2,1 : iPhone 3GS
iPhone3,1 : iPhone 4
iPhone3,2 : iPhone 4 GSM Rev A
iPhone3,3 : iPhone 4 CDMA
iPhone4,1 : iPhone 4S
@mikaelacaron
mikaelacaron / KoosNZ.swift
Created November 11, 2019 02:00
Issue to help KoosNZ
func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
timerLabel.text = gameClock[row]
if gameClock[row] == "07:00" {
counter = 420
} else if gameClock[row] == "10:00" {
counter = 600
} else if gameClock[row] == "15:00" {
counter = 900
}
}