Swift

Swift

swift UserDefaults

안드로이드의 SharedPreferences 과 비슷한 기능 SharedPreferences 보다 훨씬 쓰기 좋음 boolean 타입 코드 저장 UserDefaults.standard.set(true, forKey: "something") 읽기 UserDefaults.standard.bool(forKey: "something") boolean 타입의 기본값은 false 다 저장 한적이 없는 상태에서 호출하면 false로 들어온다

Swift

could not build objective-c module 'realmswift'

xcode 11.6 Product > Schemes > New Scheme... reamswift 선택 후 확인 Build the RealmSwift target (cmd + b) 해결

Swift

xcode 단축키

코드정리 control + i

Swift

cocoapods 설치 및 사용법

터미널을 연다 경로 상관없이 sudo gem install cocoapods 설치하려는 폴더로 이동한다 cd workspace/ios_project 코코아팟을 초기화 시켜준다 pod init 프로젝트 폴더에 Podfile 이 생긴다 vi 편집기로 Podfile을 열어준다 vi Podfile vi 편집기로 Podfile이 열렸으면 원하는 라이브러리를 추가해준다 target 'ios_project' do # Comment the next line if you don't want to use dynamic frameworks use_frameworks! # Pods for JINSIM_ios pod 'KakaoSDK', '~> 2.0.0-beta.7' pod 'Moya', '~> 14.0' pod 'SnapK..

Swift

상수 변수

변수는 var상수는 let 상수와 변수 이름은 유니코드를 포함한 그 어떤 문자로도 지을 수 있다최고다

개발세탁기
'Swift' 카테고리의 글 목록