Swiftpack.co - mkeiser/SwiftUTI as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by mkeiser.
mkeiser/SwiftUTI 2.0.3
A Swift wrapper around Apples Universal Type Identifier functions.
⭐️ 27
🕓 4 years ago
.package(url: "https://github.com/mkeiser/SwiftUTI.git", from: "2.0.3")

SwiftUTI

A swift wrapper around Apples Universal Type Identifier functions.

Usage

A typical usage might be like that:

let fileURL = URL(fileURLWithPath: ...)
let fileUTI = UTI(withExtension: fileURL.pathExtension)

// Check if it is a specific UTI (UTIs are equatable):

if fileUTI == UTI.pdf {

    // handle PDF document...
}

// Check if an UTI conforms to a UTI:

if fileUTI.conforms(to: .image) {

    // Handle image file...
}

Creating System and Custom UTIs

All system defined UTTypes are available as static variables. For example, to access the UTType for PDF documents, simply call UTI.pdf.

To define your own UTI (perhaps for your custom document type), you should make an extension like this:

public extension UTI {

    static let myDocument = UTI(rawValue: "com.mycompany.mydocument")
}

Your custom type is then accessible like this: UTI.myDocument.

Working with Tags

Initializing from tags:

Initializing an UTI from a file extension:

let fileURL = URL(fileURLWithPath: ...)
let fileUTI = UTI(withExtension: fileURL.pathExtension)

Forcing conformance to another UTI:

let fileURL = URL(fileURLWithPath: ...)
let fileUTI = UTI(withExtension: fileURL.pathExtension, conformingTo: UTI.package)

There are similar APIs to work with MIME types, pasteboard types, and OSTypes.

Accessing tags:

You can easily access tags from any UTI instance. For example to get the MIME type of PDFs, simply call UTI.pdf.mimeType.

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics