Swift/끄적끄적
-
CocoaPod 설치 과정Swift/끄적끄적 2024. 10. 24. 14:52
터미널에 cocoapods 설치를 위한 코드를 입력sudo gem install cocoapods 설치 중 오류 발생..!ERROR: Error installing cocoapods: The last version of drb (>= 0) to support your Ruby & RubyGems was 2.0.6. Try installing it with `gem install drb -v 2.0.6` and then running the current command again drb requires Ruby version >= 2.7.0. The current ruby version is 2.6.10.210. 이 오류는 현재 사용 중인 Ruby 버전(2.6.10)이 cocoapods 설치에 필요한 d..
-
[Swift] ViewController 화면전환Swift/끄적끄적 2023. 4. 22. 17:43
앱을 만들다가 화면 전환이 필요할 때마다 찾아봐서 정리하면서 공부해 볼게요~ UIKit 프레임워크를 사용 우선 초기 화면에서 command + N을 눌러 swift file을 하나 생성- 'ViewController2'라는 이름으로 생성 ViewController 코드에서 버튼을 눌러 화면을 넘어가는 기능을 수행할 것이기 때문에 다음과 같이 작성import UIKitclass ViewController: UIViewController { @IBOutlet weak var NextPage: UIButton! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loadi..