You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
611 B
20 lines
611 B
// |
|
// TYLinkTextStorage.h |
|
// TYAttributedLabelDemo |
|
// |
|
// Created by tanyang on 15/4/8. |
|
// Copyright (c) 2015年 tanyang. All rights reserved. |
|
// |
|
|
|
#import "TYTextStorage.h" |
|
|
|
@interface TYLinkTextStorage : TYTextStorage<TYLinkStorageProtocol> |
|
|
|
// textColor 链接颜色 如未设置就是TYAttributedLabel的linkColor |
|
// TYAttributedLabel的 highlightedLinkBackgroundColor 高亮背景颜色 |
|
// underLineStyle 下划线样式(无,单 双) 默认单 |
|
// modifier 下划线样式 (点 线)默认线 |
|
|
|
@property (nonatomic, strong) id linkData; // 链接携带的数据 |
|
|
|
@end
|
|
|