Skip to content

wordpress-mobile/AztecEditor-iOS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

259342a · Feb 5, 2025
Feb 5, 2025
Apr 4, 2019
Oct 20, 2022
Dec 6, 2023
Jan 22, 2025
Jan 12, 2021
Jan 28, 2025
Jan 28, 2025
Feb 25, 2021
Feb 2, 2024
Oct 21, 2016
Jan 7, 2021
Jan 22, 2025
Sep 3, 2018
Jan 17, 2025
Feb 10, 2022
Feb 10, 2022
Apr 16, 2024
Jan 17, 2025
Feb 4, 2025
Feb 12, 2019
Jun 13, 2019
Jan 17, 2025
Jan 17, 2025
Sep 14, 2020
Jan 28, 2025
Dec 6, 2023
Feb 4, 2025
Feb 4, 2025

Repository files navigation

Aztec for iOS: Native HTML Editor

Aztec's Logo'

CircleCI Version License Platform

About Aztec & WordPressEditor

Aztec is a Swift library that provides a UITextView subclass with HTML visual-editing capabilities.

  • Use this library if you want to create an App that interacts with raw HTML content.

WordPressEditor is a Swift library that provides a plugin to make Aztec work with WordPress content.

  • Use this library if you want to create an App that interacts with WordPress HTML content.

Requirements

  • iOS 11 and above
  • Xcode 12 and above

Running the Example App

To run the Example app, you first open the file Aztec.xcworkspace from the root directory of Aztec.

Make sure the AztecExample target it selected, and press CMD + R to run it.

Integrating the Library with Carthage

Both libraries are available through Carthage. To install it, simply add the following line to your Cartfile:

github "wordpress-mobile/AztecEditor-iOS" "1.0" # or the version number you want
github "wordpress-mobile/WordPressEditor-iOS" "1.0"

Follow these instructions to add Aztec.framework or WordPressEditor.framework to your App.

Then:

  1. Open your project, head to Build Settings for your target and add $(SDKROOT)/usr/include/libxml2/ to your Header Search Paths.
  2. Go to Build Phases > Link Binary With Libraries and add Aztec.framework.
  3. Add import Aztec to your project's source.

Integrating the Library with CocoaPods

Both libraries are available through CocoaPods. To install them, simply add the following lines to your Podfile:

pod "WordPress-Aztec-iOS", "1.0" # or the version number you want
pod "WordPress-Editor-iOS", "1.0"

Integrating the Library with SPM

Both libraries are available through SPM. To install them, add the package to your package dependencies and the appropriate library to your target dependencies.

let package = Package(
    name: "YourPackage",
    products: [
        .library(name: "YourLibrary", targets: ["YourTarget"]),
    ],
    dependencies: [
        .package(url: "https://github.com/wordpress-mobile/AztecEditor-iOS", .upToNextMajor(from: "1.20.0")),
    ],
    targets: [
        .target(
            name: "YourTarget",
            dependencies: [
                .product(name: "Aztec", package: "AztecEditor-iOS"), // You can choose...
                .product(name: "WordPressEditor", package: "AztecEditor-iOS"), // which library you need.
            ]
        ),
    ]
)

Via Xcode

You can also just use the project repo URL (https://github.com/wordpress-mobile/AztecEditor-iOS) via Xcode!

note: SPM support was added in version 1.20.0, tags prior to that will fail to resolve in SPM.

Usage

After installing Aztec, import the module and use the Aztec.TextView view as shown below:

import Aztec

// ...

let textView = Aztec.TextView(
    defaultFont: UIFont,
    defaultParagraphStyle: ParagraphStyle = ParagraphStyle.default,
    defaultMissingImage: UIImage) {

Contributing

Read our Contributing Guide to learn about reporting issues, contributing code, and more ways to contribute.

Getting in Touch

If you have questions about getting setup or just want to say hi, join the WordPress Slack and drop a message on the #mobile channel.

License

AztecEditor-iOS and WordPress-Editor-iOS are open source projects covered by the Mozilla Public License Version 2.0.