Skip to content

Commit 86f7263

Browse files
committed
1.0 Release
1 parent d82174c commit 86f7263

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

Framework/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.9.19</string>
18+
<string>1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ Installation
485485

486486
### CocoaPods
487487

488-
1. Add `pod "YYText"` to your Podfile.
488+
1. Add `pod 'YYText'` to your Podfile.
489489
2. Run `pod install` or `pod update`.
490490
3. Import \<YYText/YYText.h\>
491491

@@ -520,9 +520,10 @@ Documentation
520520
Full API documentation is available on [CocoaDocs](http://cocoadocs.org/docsets/YYText/).<br/>
521521
You can also install documentation locally using [appledoc](https://github.com/tomaz/appledoc).
522522

523+
523524
Requirements
524525
==============
525-
This library requires a deployment target of iOS 6.0 or greater.
526+
This library requires `iOS 6.0+` and `Xcode 7.0+`.
526527

527528

528529
License
@@ -1018,7 +1019,7 @@ YYText 和 TextKit 架构对比
10181019

10191020
### CocoaPods
10201021

1021-
1. 在 Podfile 中添加 `pod "YYText"`
1022+
1. 在 Podfile 中添加 `pod 'YYText'`
10221023
2. 执行 `pod install``pod update`
10231024
3. 导入 \<YYText/YYText.h\>
10241025

@@ -1055,16 +1056,18 @@ YYText 和 TextKit 架构对比
10551056

10561057
系统要求
10571058
==============
1058-
该项目最低支持 iOS 6.0。
1059+
该项目最低支持 `iOS 6.0``Xcode 7.0`
10591060

10601061

10611062
已知问题
10621063
==============
10631064
* YYText 并不能支持所有 CoreText/TextKit 的属性,比如 NSBackgroundColor、NSStrikethrough、NSUnderline、NSAttachment、NSLink 等,但 YYText 中基本都有对应属性作为替代。详情见上方表格。
10641065
* YYTextView 未实现局部刷新,所以在输入和编辑大量的文本(比如超过大概五千个汉字、或大概一万个英文字符)时会出现较明显的卡顿现象。
10651066
* 竖排版时,添加 exclusionPaths 在少数情况下可能会导致文本显示空白。
1066-
* 当添加了非矩形的 textContainerPath,并且有嵌入大于文本排版方向宽度的 RunDelegate 时,RunDelegate 后面的文字会无法显示。这是 CoreText 的 Bug(或者说是 Feature)。
1067+
* 当添加了非矩形的 textContainerPath,并且有嵌入大于文本排版方向宽度的 RunDelegate 时,RunDelegate 之后的文字会无法显示。这是 CoreText 的 Bug(或者说是 Feature)。
10671068

10681069
许可证
10691070
==============
10701071
YYText 使用 MIT 许可证,详情见 LICENSE 文件。
1072+
1073+

YYText.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = 'YYText'
33
s.summary = 'Powerful text framework for iOS to display and edit rich text.'
4-
s.version = '0.9.19'
4+
s.version = '1.0'
55
s.license = { :type => 'MIT', :file => 'LICENSE' }
66
s.authors = { 'ibireme' => 'ibireme@gmail.com' }
77
s.social_media_url = 'http://blog.ibireme.com'

0 commit comments

Comments
 (0)