반응형 분류 전체보기232 [OS - 🍎 macOS] ARC (Automatic Reference Counting) 카테고리 게시글 작성 날짜 게시글 최근 수정 날짜 작성자 Operating System 2020-03-22 20:37 2022.02.23. 20:47 Dev.Yang [OS - 🍎 macOS] ARC (Automatic Reference Counting) Automatic Reference Counting (ARC) 자동적으로 더 이상 필요하지 않은 클래스의 인스턴스를 메모리에서 해제하는 방식으로 동작하는 메모리 관리 기법입니다. Automatic Reference Counting (ARC)은 Objective-C 인스턴스들에 대한 메모리를 자동적으로 관리하여 주는 컴파일러의 기능입니다. 또한, Automatic Reference Counting (ARC)는 애플리케이션의 인스턴스 사이의 관계 그리고 객.. 2020. 3. 22. [OS - 🍎 macOS] Finder Sync Extensions 🗂 Finder Sync Extension In OS X, the Finder Sync extension point lets you cleanly and safely modify the Finder’s user interface to express file synchronization status and control. Unlike most extension points, Finder Sync does not add features to a host app. Instead, it lets you modify the behavior of the Finder itself. macOS에서, Finder Sync Extension 중점은 분명하고 그리고 안전하게 수정을 수행할 수 있도록 Finder's 사용자 .. 2020. 2. 28. [OS - 🍎 macOS] NSServices 🗂 NSServices Property 구조 → property list key NSKeyEquivalent A keyboard shortcut that invokes the service menu command. 서비스 메뉴 단축키 설정 입력 항목 [key equivalent] → property list key NSMenuItem [Required] Text for a Services menu item. 서비스 메뉴의 타이틀 입력 항목 [Menu] → property list key NSMessage [Required] An instance method that invokes the service. 서비스와 관련 된 인스턴스 메서드명 입력 항목 [Instance method name] → proper.. 2020. 2. 27. [C/C++] C++ 백터와 배열의 차이점 (C++ Vector and Array Difference) 카테고리게시글 작성 날짜게시글 최근 수정 날짜작성자C/C++2020-02-23 22:312022.03.15. 19:03Dev.Yang 아래의 도표는 Vector STL (Standard Template Library)와 Array에 대한 비교 도표입니다. 벡터 (Vector)배열 (Array)CreateElement들을 순차적으로 저장할 수 있는 Container 입니다.인덱스 (Index) 기반의 기본적인 자료구조입니다.MemoryArray에 비하여 메모리 공간을 많이 차지합니다.고정 된 길이 값을 사용하므로 효율적으로 메모리 공간을활용할 수 있습니다.Length가변적인 길이를 가지고 있습니다.고정 된 길이를 가지고 있습니다.Usage빈번하게 Element에 대한 삽입과 삭제 작업이 발생합니다.빈번.. 2020. 2. 23. 이전 1 ··· 28 29 30 31 32 33 34 ··· 58 다음 반응형