본문 바로가기
반응형

ios73

[iOS] UserDefaults (How to save user settings using UserDefaults) How to save user settings using UserDefaults 📄 Swift Source Code // Save let defaults = UserDefaults.standard defaults.set(25, forKey: "Age") defaults.set(true, forKey: "UseTouchID") defaults.set(CGFloat.pi, forKey: "Pi") // Retrive let age = defaults.integer(forKey: "Age") let useTouchID = defaults.bool(forKey: "UseTouchID") let pi = defaults.double(forKey: "Pi") 🚀 REFERENCE How to save user se.. 2019. 7. 2.
[iOS] 부스트코스 - iOS 프로그래밍 📌 iOS - Edwith Boost Course 네이버에서 설립한 커넥트재단은 교육을 통해 개인의 지속적인 성장과 발전을 돕고, 원하는 곳 어디든 배움의 기회가 열리는 세상을 만들기 위해 노력합니다. 부스트코스는 커리어 역량을 강화할 수 있도록, 커넥트재단에서 기획하고 운영하는 실무형 온라인 교육 프로그램입니다. 📌 iOS 부스트 코스 프로젝트 목록 (Boost Course Project List for iOS) [#1 Project Tech Keyword] - Foundation, UIKit, Autolayout, Cocoa Touch, MVC (Model-View-Controller), AVFoundation [#2 Project Tech Keyword] - H.I.G (Human Interface.. 2019. 6. 30.
[iOS] 화면 터치를 통한 Keyboard 내리기 (Close iOS Keyboard by touching anywhere using Swift) 화면 터치를 통한 Keyboard 내리기 (Close iOS Keyboard by touching anywhere using Swift) 📄 Close iOS Keyboard by touching anywhere using Source Code by Swift // MARK: - Event Methods override func touchesBegan(_ touches: Set, with event: UIEvent?) { self.view.endEditing(true) } 🚀 REFERENCE Close iOS Keyboard by touching anywhere using Swift I have been looking all over for this but I can't seem to find it. .. 2019. 6. 28.
[iOS] 기상청 (Korea Meteorological Administration) Grid XY 📄 기상청 Grid XY란? 한반도와 서해 5도를 포함한 우리나라와 인근 해역으로 남쪽으로는 이어도, 동쪽으로는 독도, 서쪽 끝으로는 백령도 까지 포함하고 있다. 이 영역은 5km×5km의 격자 간격으로 총 37,697개의 격자를 포함한다. (동서 149개 ×남북 253개). 📄 기상청 Grid XY Swift Source Code fileprivate struct lamc_parameter { var Re:Float /* 사용할 지구반경 [Km] */ var grid:Float /* 격자간격 [Km] */ var slat1:Float /* 표준위도 [Degree] */ var slat2:Float /* 표준위도 [Degree] */ var olon:Float /* 기준점의 경도 [Degree] */ v.. 2019. 6. 27.
반응형