iOS (2) 썸네일형 리스트형 [StanfordIOS 강의 공부기록 #2강] 계산기 만들기 내용 정리 지금까지 배운 내용 + 헷갈리는 내용 정리 // ViewController.swift // StanfordCloneCalculator import UIKit class ViewController: UIViewController { @IBOutlet private weak var display: UILabel! private var userIsInTheMiddleOfTyping : Bool = false @IBAction private func touchDigit(_ sender: UIButton){ let digit : String = sender.currentTitle! if userIsInTheMiddleOfTyping{ let textCurrentylInDisplay = display.text! d.. [iOS 에러수집 #1]Build input file cannot be found: '--파일경로'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it? Build input file cannot be found: '/Users/--파일경로 /Info.plist'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it? 이런 에러가 떴는데 찾아보니 해당 파일의 경로나 storyboard 파일 이름에서 생긴 문제 같다. 해결법 1. 파일을 더블 클릭하여 선택한다. 2. Builld Settings를 클릭 후 Packaging에서 info.plist.File을 찾는다. 3. 경로를 파일 경로에 맞게 수정하거나 파일명을 제대로 쓴다 이전 1 다음