분류 전체보기
-
[macOS] uname 명령어 사용법/mac OS 🖥 2023. 8. 13. 21:52
uname 명령어는 시스템 정보를 출력해줍니다. 주로 시스템과 리눅스 커널에 관련된 정보를 확인할 수 있습니다. uname은 리눅스뿐만 아니라 맥OS 등에서도 사용할 수 있습니다. 현재 시스템의 시스템 아키텍처나 커널 버전을 확인할 때 특히 유용합니다. 옵션 없이 uname을 실행한 결과는 다음과 같습니다. $ ~ uname Darwin Print certain system information. With no OPTION, same as -s. usage: uname [-amnoprsv] // print all information $ ~ uname -a // print the machine hardware name $ ~ uname -m arm64 // print the network node hos..
-
[macOS] Darwin은 무엇일까 ?/mac OS 🖥 2023. 8. 13. 21:32
"Darwin"은 macOS, iOS, watchOS, 그리고 tvOS의 기초를 이루는 오픈 소스 운영 체제 Core입니다. 이것은 Apple에 의해 개발되었고(NeXT를 1997년에 인수) BSD Unix 운영 체제를 기반으로 합니다. [macOS] macOS의 뿌리는 어디일까 ? 참고. 간단히 말하면 Darwin은 Apple의 다양한 운영 체제를 작동시키는 기반 기술입니다. 우리가 사용하는 코코아 프레임워크 또한 Darwin 위에 올려서 작동합니다.
-
[macOS] macOS의 뿌리는 어디일까 ?/mac OS 🖥 2023. 8. 13. 21:17
https://en.wikipedia.org/wiki/Unix-like#/media/File:Unix_history-simple.svg Unix-like - Wikipedia From Wikipedia, the free encyclopedia Operating system that behaves in a manner similar to a Unix system Evolution of Unix and Unix-like systems, starting in 1969 A Unix-like (sometimes referred to as UN*X or *nix) operating system is one that behaves in a en.wikipedia.org
-
[] TestFlight 업로드 수출 규정 관련 문서 누락/Apple 심사 & 배포 관련 2023. 8. 12. 01:12
안녕하세요 아렉스입니다 ! 저도 드디어 ~ 개인 앱 준비를 심사 전 테스트를 위해서 아카이브를 해봤는데요 ! 앱 심사 전 TestFlight에서 수출 규정 관련 문서 누락 메세지를 해결해보곘습니다 ! 이러한 메세지가 나오는 이유는 TestFlight 또는 App Store에 앱을 제출하면 미국에 있는 서버에 앱을 업로드하게 됩니다. 미국 또는 캐나다 외부에서 앱을 배포하는 경우 법인의 소재지에 관계없이 앱은 미국 수출법의 적용을 받습니다. 앱의 새 버전을 제출할 때마다 App Store Connect는 질문한다고 하네요 ! Info.plist에 작성하게되면 프로세스를 간소화 할 수 있다고 합니다. 우선 관리를 눌러서 해결해보겠습니다 제 앱은 위에 언급된 알고리즘 모두 해당하지 않기에 마지막거를 선택해주고..
-
[] Apple Developer Program(애플 개발자 계정) 갱신하기 2023. 8. 11. 11:24
안녕하세요 아렉스입니다 어느덧 2번 째 갱신을 하게됐네요 ~ 시간이 너무 빨라요 ㅜㅜ 준비물은 129,000원 입니다 ..! Apple Developer - 계정을 로그인해서 보게되면 Apple Developer Program 멤버십이 만료가 되기 30일 전부터 멤버십 갱신을 요구합니다 (친구비 입급해 !!!) App Store Connect에서도 알림을 해줍니다. 멤버십 갱신을 누르게 되면 결제 화면으로 연결됩니다. 입금 완료하면 보통 24시간 이내에 처리가 됩니다 ! 그렇기에 너무 빠듯하게 갱신하지않는게 좋은거 같아요 :D
-
[iOS] 라이트모드/다크모드 설정하기 (Appearance)/iOS 📱 2023. 8. 7. 15:29
WWDC 2019, iOS 13에서 Dark 모드가 등장했어요. (WWDC 2019 -Implementing Dark Mode on iOS) 라이트모드 지원 / 두 모드 모두 지원 / 다크모드 지원 이렇게 세가지 경우가 있는거 같아요 info.plist 에 추가하기 info.plist에 Appearance 와 Dark 를 쌍으로 추가해주세요 Appearance 에 추가 가능한 Value는 Automatic(default value), Light, Dark 3 가지입니다. 출처 WWDC 2019 -Implementing Dark Mode on iOS Apple Documentation/info.plist - UIUserInterfaceStyle(Apparance)
-
[iOS] Lottie 애니메이션 사용하기/iOS 📱 2023. 8. 7. 14:37
Lottie - Github GitHub - airbnb/lottie-ios: An iOS library to natively render After Effects vector animations An iOS library to natively render After Effects vector animations - GitHub - airbnb/lottie-ios: An iOS library to natively render After Effects vector animations github.com https://lottiefiles.com/kr/ 무료 로티 애니메이션, 모션 그래픽을 위한 모든 플러그인과 도구를 한 곳에 - 로티파일즈/LottieFi 로티파일즈/LottieFiles는 오픈소스 애니메이..
-
[iOS] 스토리보드 없이 개발하기/iOS 📱 2023. 8. 7. 12:06
Main 스토보드 삭제 프로젝트 → info.plist UISceneStoryboardFile 제거 Target → info.plist UIMainStoryboardFile 제거 func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. // If using a storyboard, the `window` property will automa..