Swift
-
[Swift] 조건문iOS/Swift 2022. 12. 1. 01:13
import UIKit var isDarkMode : Bool = true if (isDarkMode == true){ // 다크모드 라면, print("다크모드 입니다.") } else { print("다크모드가 아닙니다.") } if isDarkMode { // 다크모드 라면, print("다크모드 입니다.") } else { print("다크모드가 아닙니다.") } if !isDarkMode { // 다크모드가 아니라면, print("다크모드 입니다.") } else { print("다크모드가 아닙니다.") } //삼항 연산으로 작성할 경우 : 왼쪽 참, 오른쪽 거짓인 경우에 출력 var title1 : String = isDarkMode == true ? "다크모드 입니다" : "다크모드가 아닙니..
-
[iOS 앱개발] 개발 자료 아카이브iOS 2022. 11. 1. 14:55
[강추] 40시간만에 Swift로 iOS 앱 만들기 https://devxoul.gitbooks.io/ios-with-swift-in-40-hours/content/ 애플 개발자 공식 사이트 https://developer.apple.com/documentation/ 스위프트 기초 문법 기초 문법 정리 야곰 블로그 야곰의 프로그래밍 블로그 iOS 개발자 로드맵 https://github.com/godrm/mobile-developer-roadmap swift 강의 동영상 https://github.com/ClintJang/awesome-swift-korean-lecture 네이버 API 연동 튜토리얼 https://developers.naver.com/docs/login/ios/ios.md SF symb..