본문 바로가기
반응형

#컴퓨터 과학 [Computer Science]/운영체제 (Operating System)49

[OS - 🍎 macOS] Cocoa CustomView 가져오는 방법 (Working with Custom Views) 카테고리 게시글 작성 날짜 게시글 최근 수정 날짜 작성자 Operating System 2022.12.14. 21:22 2022.12.14. 21:22 Dev.Yang /** `NSNib`를 통해서 제작 된 `NSView`를 가져올 수 있는 함수입니다. - Version: `1.0.0` - Authors: `ChangYeop-Yang` - Returns: `Optional` */ final func loadCustomView(name stringLiteral: String, type: T.Type) -> Optional { var topLevelObjects: Optional = nil let name: NSNib.Name = NSNib.Name(stringLiteral: stringLiteral) gu.. 2022. 12. 14.
[OS - 🍎 macOS] RxSwift 카테고리 게시글 작성 날짜 게시글 최근 수정 날짜 작성자 Operating System 2022.03.09. 14:21 2022.03.09. 14:21 Dev.Yang 🛠 리액티브 프로그래밍 (Reactive Programming)이란? 데이터가 통지될 때마다 관련 프로그램이 반응 (Reaction)하여 데이터를 처리하는 프로그래밍 방식입니다. 즉, 데이터 흐름을 통하여 데이터를 받은 시점에 반응하여 이를 처리하는 프로그래밍입니다. 🛠 Reactive Streams이란? 라이브러리 (Library)나 프레임워크 (Framework)에 상관없이 데이터 스트림 (Data Stream)을 비동기로 다룰 수 있는 공통적인 메커니즘입니다. Reactive Streams 구성으로는 생산자 (Publiser)와 소비.. 2022. 3. 9.
[OS - 🍎 macOS] 번들 (Bundle) 카테고리 게시글 작성 날짜 게시글 최근 수정 날짜 작성자 Operating System 2022-02-24 22:42 2022.02.26. 20:24 Dev.Yang Understanding macOS application bundles by building an agent-based app 번들 (Bundle)은 정의된 구조와 파일 확장자를 가지는 디렉터리 (Directory)의 일종으로 macOS, iOS, tvOS, watchOS 등의 운영체제 환경에서 손쉽게 소프트웨어를 전달하기 위해 만들어졌습니다. 번들 (Bundle) 확장자로는 .app, .framework, .kext, .plugin, .docset, .xpc, .qlgenerator, .component, .saver, .mdimporte.. 2022. 2. 24.
[OS - 🍎 macOS] AppKit과 UIKit 차이점 (What is the difference between AppKit and UIKit) 카테고리 게시글 작성 날짜 게시글 최근 수정 날짜 작성자 Operating System 2022.02.23. 23:09 2022.02.23. 23:09 Dev.Yang 🛠 AppKit AppKit is included in the OS X SDK only. It provides all the classes and controls you need for creating Mac applications. Most of these classes share a common naming prefix starts with NS and classes you will be working with include - NSView, NSButton. AppKit은 macOS 운영체제 환경에서 Desktop Applicatio.. 2022. 2. 23.
반응형