.DYLIB 파일 확장자
Mach-O Dynamic Library
| 개발사 | Apple |
| 인기도 |
4.0 | 28 투표 |
DYLIB 파일이란 무엇인가요?
A DYLIB file is a Macintosh library that contains declarations and functions referenced by a macOS or iOS application. Programs load DYLIB files dynamically when needed, allowing for efficient memory usage. Apple Xcode users may reference DYLIB files while developing macOS programs.
추가 정보
DYLIB files are saved in the Mach object, better known as Mach-O, file format. The NeXTSTEP, macOS, and iOS operating systems, which are built upon variants of the Mach kernel, can all load shared functions from DYLIB dynamic libraries.
참고: Some .O and .BUNDLE files are also saved in the Mach-O format. These files contain objects, plug-ins, and executable files.
DYLIB 파일을 여는 방법
DYLIB files are not meant to be opened. Developers may reference DYLIB files when creating applications with Apple Xcode.