본문 바로가기
반응형

#모바일 [Mobile]56

[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.
[Android] 👓 Android Developer 면접 예상 질문 (Interview Question) 👓 Android Service란 무엇인가? Service는 백그라운드에서 오래 실행되는 작업을 수행할 수 있는 애플리케이션 구성 요소이며 사용자 인터페이스를 제공하지 않습니다. 다른 애플리케이션 구성 요소가 서비스를 시작할 수 있으며, 이는 사용자가 다른 애플리케이션으로 전환하더라도 백그라운드에서 계속해서 실행됩니다. 이외에도, 구성 요소를 서비스에 바인딩하여 서비스와 상호작용할 수 있으며, 심지어는 프로세스 간 통신(IPC)도 수행할 수 있습니다. 예를 들어 한 서비스는 네트워크 트랜잭션을 처리하고, 음악을 재생하고 파일 I/O를 수행하거나 콘텐츠 제공자와 상호작용할 수 있으며 이 모든 것을 백그라운드에서 수행할 수 있습니다. 📓 포그라운드 (Foreground) 포그라운드 서비스는 사용자에게 잘 보.. 2019. 9. 5.
[Android] 백그라운드 투명색 설정 (Set transparent background of an imageview on Android) 📄 [Android] XML Source Code android:background="@android:color/transparent" OR android:background="#00000000" 🚀 REFERENCE 안드로이드/Android BackGround 투명색 적용 하기 ~! 안드로이드/Android BackGround 투명색 적용 하기 ~! 안드로이드에서 투명 배경(BackGround)을 설정 하는 방법 입니다. View의 BackGround 나 Color를 사용할 수 있는 곳에 "android/color/transparent" 속성이나.. arabiannight.tistory.com Set transparent background of an imageview on Android I am us.. 2019. 9. 2.
반응형