WordPress-Editor-iOS
介绍
WordPress-Editor-iOS 是在 WordPress iOS 应用程序 中用于创建和编辑页面及文章的文本编辑器。简而言之,它是一种简单直观的方式来视觉编辑 HTML。
如何入门
您可以通过 CocoaPods 在您的应用程序中安装编辑器
platform :ios, '10.0'
pod 'WordPress-iOS-Editor'
或者,您可以使用 CocoaPods 的尝试命令尝试示例:
pod try WordPress-iOS-Editor
需求
WordPress-iOS-Editor需要iOS 10.0或更高版本。它依赖于以下Apple框架
- Foundation.framework
- UIKit.framework
- CoreGraphics.framework
- CoreText.framework
以及以下CocoaPods
关于更多详细信息,请参阅podspec
用法
为了在您的应用中使用WordPress-iOS-Editor,您需要执行以下三个步骤。
-
创建一个继承自
WPEditorViewController
的ViewController#import <UIKit/UIKit.h> #import <WordPress-iOS-Editor/WPEditorViewController.h> @interface WPViewController : WPEditorViewController <WPEditorViewControllerDelegate> @end
-
在您的视图中实现任何可选的
WPEditorViewControllerDelegate
方法 -
可以使用
titleText
和bodyText
属性来设置和获取文本文档的标题和正文。
有关更多详细信息,您可以查看此repo中包含的EditorDemo项目。
其他资源
开发者博客 & 指南
博客: http://make.wordpress.org/mobile
指南: http://make.wordpress.org/mobile/handbook
风格指南
https://github.com/wordpress-mobile/WordPress-iOS/wiki/WordPress-for-iOS-Style-Guide
仅编辑者报告问题
https://github.com/wordpress-mobile/WordPress-iOS-Editor/issues
源代码
GitHub: https://github.com/wordpress-mobile/WordPress-iOS-Editor
如何贡献
http://make.wordpress.org/mobile/handbook/pathways/ios/how-to-contribute
归属
以下项目被用于WordPress-iOS-Editor代码库中
组件 | 描述 | 许可 |
---|---|---|
ZSSRichTextEditor | ZSSRichTextEditor是一个iOS上的富文本WYSIWYG编辑器,是本项目的基础。 | MIT |
CYRTextView | CYRTextView是一个实现多种功能的UITextView子类,这些功能对于语法或代码文本视图来说是相关的。 | MIT |
HRColorPicker | iPhone的简单颜色选择器 | BSD |
jQuery | jQuery是一个快速、小巧且功能丰富的JavaScript库。 | MIT |
JS Beautifier | 使丑陋的JavaScript变得美观 | MIT |
许可
WordPress-iOS-Editor可在GPL许可下获得。更多信息请参阅LICENSE文件。