본문 바로가기
반응형

#모바일 [Mobile]/iOS41

[iOS] SQLite (SQLite With Swift Tutorial: Getting Started) [iOS] SQLite (SQLite With Swift Tutorial: Getting Started) SQLite는 MySQL나 PostgreSQL와 같은 데이터베이스 관리 시스템이지만, 서버가 아니라 응용 프로그램에 넣어 사용하는 비교적 가벼운 데이터베이스이다. 영어권에서는 '에스큐엘라이트(ˌɛskjuːɛlˈlaɪt)' 또는 '시퀄라이트(ˈsiːkwəl.laɪt)'라고 읽는다. 일반적인 RDBMS에 비해 대규모 작업에는 적합하지 않지만, 중소 규모라면 속도에 손색이 없다. 또한 API는 단순히 라이브러리를 호출하는 것만 있으며, 데이터를 저장하는 데 하나의 파일만을 사용하는 것이 특징이다. 버전 3.3.8에서는 풀텍스트 검색 기능을 가진 FTS1 모듈이 지원된다. 컬럼을 삭제하거나 변경하는 것 등이.. 2019. 10. 25.
[iOS] 애플 암호화 개발 도구 (Apple CryptoKit Swift Framework) Cryptography and Your Apps System frameworks encrypt both data at rest and data in transit in a transparent way for you. This functionality is available by simply setting an attribute. However you may want to do more to protect your users' data. CryptoKit is a new Swift framework that makes it easier and safer than ever to perform cryptographic operations, whether you simply need to compute a ha.. 2019. 10. 21.
[iOS] iOS/macOS 개발자 면접 예상 질문 (Interview Question) ㅍ카테고리 게시글 작성 날짜 게시글 최근 수정 날짜 작성자 iOS 2019-08-03 22:00 2022.05.23. 20:50 Dev.Yang 👓 Cocoa Framework란 무엇인지 설명하시오. 🍎 Cocoa (Application) Layer - The Cocoa (Application) layer implements many features that are distinctive aspects of the OS X user experience. Users expect to find these features throughout the system, so it’s a good idea to support all the features that make sense in your app. 🍎 Media.. 2019. 8. 3.
[iOS] UIStatusBar에 Network Indicator 표시하기 (How to turn on the network indicator in the iOS status bar?) 📄 Network Activity Indicator Source Code by Swift // MARK: - Show NetworkActivityIndicator UIApplication.shared.isNetworkActivityIndicatorVisible = true // MARK: - Hide NetworkActivityIndicator UIApplication.shared.isNetworkActivityIndicatorVisible = false 🚀 REFERENCE Status Bars - Bars - iOS - Human Interface Guidelines - Apple Developer Status Bars The status bar appears along the upper edge o.. 2019. 8. 2.
반응형