본문 바로가기

iOS/Swift74

M1 error running pod install https://github.com/CocoaPods/CocoaPods/issues/10904 M1 error running pod install · Issue #10904 · CocoaPods/CocoaPods Command /usr/local/bin/pod install Report What did you do? Installing react-native (not via expo) but got an error in installing CocoaPods dependencies and tells to manually run pod install What di... github.com https://stackoverflow.com/questions/64901180/running-cocoapods-on-ap.. 2021. 9. 20.
text property the text property of a textfield is never going to equal nil, even if it's empty, it's going to be set https://stackoverflow.com/questions/24102641/how-to-check-if-a-text-field-is-empty-or-not-in-swift How to check if a text field is empty or not in swift I am working on the code below to check the textField1 and textField2 text fields whether there is any input in them or not. The IF statement .. 2021. 9. 10.
IOS Application Lifecycle IOS에서 앱을 실행하면 어떤 과정을 통해 실행될까? C언어에 뿌리를 둔 모든 애플리케이션은 main() 함수로부터 시작된다. 이를 Entry Point라고 한다. OS가 애플리케이션 내부에 정의된 main() 함수를 찾아 호출하면 함수에 작성된 코드가 실행되며, 작성해둔 Custom Code에 까지 도달하게 되는 식이다. IOS 앱 또한 Object-C 기반으로 돌아가기 때문에 앱은 main() 함수에서 시작된다. 다만, 다른 C 기반의 앱과 달리, IOS 앱은 핵심 라이브러리인 UIKit Framework가 main() 함수를 관리하여 사용자가 직접 작성하지 않는 차이가 있다. 다음은 실제로 Object-C 기반의 XCode 프로젝트를 생성하였을 때, main.m 파일 안에 생성되는 main() 함수.. 2021. 9. 9.
[Swift] Control Flow Control Flow Swift에서는 while loop, if guard, switch, for-in 문 등 많은 제어문을 제공한다. For-In 문 for-in문은 배열, 숫자, 문자열을 순서대로 순회(iterate)하기위해 사용한다. let names = ["Anna", "Alex", "Brian", "Jack"] for name in names { print("Hello, \(name)!") } // Hello, Anna! // Hello, Alex! // Hello, Brian! // Hello, Jack! 사전에서 반환된 key-value쌍으로 구성된 튜블을 순회하면서 제어할 수도 있다. 하지만 사전은 순서대로 정렬이 되지 않기때문에, 사전에 기입한 순서대로 순회하지않는다. let numbe.. 2021. 9. 8.
Design Pattern - MVC MVC에 대해서 알아보겠다. MVC MVC는 Model - View - Controlller 의 약자이다. IOS 앱의 객체 관계는 MVC 패턴에 기반하고있다. MVC 패턴이란 소스 코드 설계 기법으로써, 모델 - 뷰 - 컨트롤러로 이어지는 세개의 핵심 구조를 이용하여 애플리케이션을 설계하는 것을 말한다. 모델은 데이터를 담당하고, 뷰는 데이터에 대한 화면 표현을 담당하며, 컨트롤러는 모델과 뷰 사이에 위치하여 데이터를 가공하여 뷰로 전달하고, 뷰에서 발생하는 이벤트를 입력받아 처리하는 역할을 한다. MVC 각 섹션 동작 Controller - View Controller는 View에서 생기는 action에 대한 target을 만들어둔다. 그니깐 음.. 콜백이라고 생각하면 될 것 같다. 그 후 actio.. 2021. 8. 31.
[Swift] String and Characters String and Characters 문자열 리터럴 문자열은 큰 따옴표(")로 묶어 표현된다. let someString = "Some string literal value" Multiline String literal - 큰 따옴표 3개로 묶어서 표현 let quotation = """ The White Rabbit put on his spectacles. "Where shall I begin, please your Majesty?" he asked. "Begin at the beginning," the King said gravely, "and go on till you come to the end; then stop." """ //Use a multiline string literal a sequ.. 2021. 8. 24.