본문 바로가기
반응형

#모바일 [Mobile]56

[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.
[Android] Android Studio Assets Folder 만들기 🚀 REFERENCE How to Create Android Assets Folder in Android Studio - Coding Demos Today you will learn how to create Android assets folder in Android Studio. You can use asset folder to add video, songs and gifs files. www.codingdemos.com 2019. 6. 27.
[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.
[iOS] 진동 및 시스템 효과음 (Vibration and System Sound) + System Sound 파일 경로 /System/Library/Audio/UISounds/ 📄 System Sound Play Swift Source Code import AudioToolbox AudioServicesPlaySystemSound(/* SERVICE_NUMBER */ 4095) 🚀 REFERENCE AudioServices - iPhone Development Wiki From iPhone Development Wiki AudioServices is a group of C functions in AudioToolbox for playing short (≤30 seconds) sounds. Predefined sounds There are some predefined system sou.. 2019. 6. 27.
반응형