File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
3
3
s . name = "AttributedString"
4
- s . version = "3.3.1 "
4
+ s . version = "3.3.2 "
5
5
s . summary = "基于Swift字符串插值快速构建你想要的富文本, 支持点击按住等事件获取, 支持多种类型过滤"
6
6
7
7
s . homepage = "https://github.com/lixiang1994/AttributedString"
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ extension ASAttributedString {
53
53
54
54
public typealias Style = Attachment . Style
55
55
56
- let style : Style
56
+ public let style : Style
57
57
58
58
public static func image( _ image: Image , _ style: Style = . original( ) ) -> ImageAttachment {
59
59
return . init( image, style)
@@ -109,8 +109,8 @@ extension ASAttributedString {
109
109
110
110
public static var Loader : AsyncImageAttachmentLoader . Type = AsyncImageAttachmentURLSessionLoader . self
111
111
112
- let url : URL ?
113
- let placeholder : Image ?
112
+ public let url : URL ?
113
+ public let placeholder : Image ?
114
114
115
115
private weak var textContainer : NSTextContainer ?
116
116
@@ -172,8 +172,8 @@ extension ASAttributedString {
172
172
173
173
public typealias Style = Attachment . Style
174
174
175
- let view : UIView
176
- let style : Style
175
+ public let view : UIView
176
+ public let style : Style
177
177
178
178
/// Custom View (Only support UITextView)
179
179
/// - Parameter view: 视图
You can’t perform that action at this time.
0 commit comments