본문 바로가기
반응형

분류 전체보기232

[OS - 🍎 macOS] macOS 앱 실행하기 (Launching apps programmatically) 👓 001. launchApplication // MARK: - Launches the specified app. func launchApplication(_ appName: String) -> Bool 📔 Launching apps programmatically Source Code by Swift NSWorkspace.shared.launchApplication('APP NAME') // EXAMPLE NSWorkspace.shared.launchApplication("Safari") 🚀 REFERENCE ChangYeop-Yang/Study-macOS macOS는 기업 애플이 제작한 운영 체제이다. 2002년 4월부터 모든 매킨토시 컴퓨터에 적용되고 있다. - ChangYeop-Yang/Study-.. 2019. 11. 1.
[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.
[OS - 🍎 macOS] macOS 일련 번호 가져오기 (Find macOS serial number) 📄 Find macOS serial number by Swift /* * Copyright (c) 2019 양창엽. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or s.. 2019. 10. 12.
반응형