iOS
[UpDownGame] 프로젝트 생성부터 Action and Outlets까지
📍 1. 프로젝트 생성 📍 2. 가로 화면 고정 프로젝트 - Deplyment Info - Portrait 해제 📍 3. 슬라이더 / 버튼 생성 📍 4. 슬라이더 값 출력 ⚒️ 4-1. ViewController.swift // // ViewController.swift // UpDownGame // // Created by 이은진 on 2023/07/03. // import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. } // 슬라이더 값 읽기 @IBAction func sliderVa..