본문 바로가기
반응형

objective-c3

[OS - 🍎 macOS] 파일 공유 폴더 목록 가져오는 방법 (How to get list of shared folders) macOS 환경에서 파일 공유 폴더 목록을 가져오는 방법은 아래와 같습니다. ※ Xcode 프로젝트에서 Frameworks, Libraries, and Embedded Content 항목에 OpenDirectory.framework를 추가하여야 사용이 가능합니다. 🗂️ 파일 공유 폴더 목록가져오기 (Objective-C) #import @autoreleasepool { NSMutableDictionary * dictionary = [NSMutableDictionary new]; NSError * error = NULL; ODNode * localNode = [ODNode nodeWithSession: ODSession.defaultSession type: ODNodeType(kODNodeTypeLocal.. 2023. 10. 31.
[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.
[iOS] UITableView 셀 크기의 맞춰 높이 동적 설정 (Resizing UITableView to fit content) 📄 [iOS] UITableView DataSourceResizing UITableView to fit content Swift Source Code var frame: CGRect = self.movieUserCommentTableView.frame frame.size.height = self.movieUserCommentTableView.contentSize.height self.movieUserCommentTableView.frame = frame 📄 [iOS] UITableView DataSourceResizing UITableView to fit content Objective-C Source Code dispatch_async(dispatch_get_main_queue(), ^{ //This .. 2019. 6. 23.
반응형