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.
329 lines
9.2 KiB
329 lines
9.2 KiB
// |
|
// TYAttributedLabel.h |
|
// TYAttributedLabelDemo |
|
// |
|
// Created by tanyang on 15/4/8. |
|
// Copyright (c) 2015年 tanyang. All rights reserved. |
|
// TYAttributedLabel v2.0 verson |
|
|
|
#import <UIKit/UIKit.h> |
|
#import "TYTextContainer.h" |
|
|
|
typedef NS_ENUM(NSUInteger, TYVerticalAlignment) { |
|
TYVerticalAlignmentTop, |
|
TYVerticalAlignmentCenter, |
|
TYVerticalAlignmentBottom, |
|
}; |
|
|
|
@class TYAttributedLabel; |
|
@protocol TYAttributedLabelDelegate <NSObject> |
|
@optional |
|
|
|
// 点击代理 |
|
- (void)attributedLabel:(TYAttributedLabel *)attributedLabel textStorageClicked:(id<TYTextStorageProtocol>)textStorage atPoint:(CGPoint)point; |
|
|
|
// 长按代理 有多个状态 begin, changes, end 都会调用,所以需要判断状态 |
|
- (void)attributedLabel:(TYAttributedLabel *)attributedLabel textStorageLongPressed:(id<TYTextStorageProtocol>)textStorage onState:(UIGestureRecognizerState)state atPoint:(CGPoint)point; |
|
|
|
// 长按非Container区域代理 有多个状态 begin, changes, end 都会调用,所以需要判断状态 |
|
- (void)attributedLabel:(TYAttributedLabel *)attributedLabel lableLongPressOnState:(UIGestureRecognizerState)state atPoint:(CGPoint)point; |
|
@end |
|
|
|
/** |
|
* TYAttributedLabel 属性文本 支持图文混排显示,支持添加image和UIView,支持自定义排版 |
|
*/ |
|
@interface TYAttributedLabel : UIView |
|
|
|
@property (nonatomic, assign) id<TYAttributedLabelDelegate> delegate; |
|
|
|
@property (nonatomic, strong) NSString *text; |
|
@property (nonatomic, strong) UIColor *textColor; // 文字颜色 |
|
@property (nonatomic, strong) UIFont *font; // 文字大小 |
|
@property (nonatomic,assign) NSInteger numberOfLines; //行数 |
|
|
|
@property (nonatomic, strong) UIColor *linkColor; //链接颜色 |
|
@property (nonatomic, strong) UIColor *highlightedLinkColor;//默认nil高亮链接颜色 |
|
@property (nonatomic, strong) UIColor *highlightedLinkBackgroundColor;//链接高亮背景颜色 |
|
@property (nonatomic, assign) CGFloat highlightedLinkBackgroundRadius; // 高亮背景圆角 |
|
|
|
@property (nonatomic, assign) unichar strokeWidth; // 空心字边框宽 |
|
@property (nonatomic, strong) UIColor *strokeColor; // 空心字边框颜色 |
|
|
|
@property (nonatomic, assign) unichar characterSpacing; // 字距 |
|
@property (nonatomic, assign) CGFloat linesSpacing; // 行距 |
|
@property (nonatomic, assign) CGFloat paragraphSpacing; // 段落间距 |
|
|
|
@property (nonatomic, assign) CTTextAlignment textAlignment; // 文本对齐方式 kCTTextAlignmentLeft |
|
@property (nonatomic, assign) CTLineBreakMode lineBreakMode; // 换行模式 kCTLineBreakByCharWrapping |
|
@property (nonatomic, assign) TYVerticalAlignment verticalAlignment; // 垂直对齐方式 默认是向上对齐 |
|
|
|
@property (nonatomic, strong) TYTextContainer *textContainer; |
|
|
|
@property (nonatomic, assign) CGFloat preferredMaxLayoutWidth; // Autolayout |
|
|
|
@property (nonatomic, assign) BOOL isWidthToFit; // 宽度自适应 默认NO |
|
|
|
|
|
|
|
/** |
|
* 获取普通文本内容 |
|
*/ |
|
- (NSString *)text; |
|
|
|
/** |
|
* 获取属性文本内容 |
|
*/ |
|
- (NSAttributedString *)attributedText; |
|
|
|
/** |
|
* 设置普通初始化文本内容 |
|
* |
|
* @param text 普通文本内容 |
|
*/ |
|
- (void)setText:(NSString *)text; |
|
|
|
/** |
|
* 设置属性初始化文本内容 |
|
* |
|
* @param attributedText 属性文本内容 |
|
*/ |
|
- (void)setAttributedText: (NSAttributedString *)attributedText; |
|
|
|
/** |
|
* 添加 textStorage (自定义显示内容) |
|
* |
|
* @param textStorage 自定义 |
|
*/ |
|
- (void)addTextStorage:(id<TYTextStorageProtocol>)textStorage; |
|
|
|
/** |
|
* 添加 textRun数组 (自定义显示内容) |
|
* |
|
*/ |
|
- (void)addTextStorageArray:(NSArray *)textStorageArray; |
|
|
|
/** |
|
* 调用可以自动计算frame大小(请确定label之前设置了宽度) |
|
*/ |
|
- (void)sizeToFit; |
|
|
|
/** |
|
* 获取文本真正的高度 |
|
*/ |
|
- (int)getHeightWithWidth:(CGFloat)width; |
|
|
|
/** |
|
* 获取文本真正的size |
|
*/ |
|
- (CGSize)getSizeWithWidth:(CGFloat)width; |
|
|
|
/** |
|
* 设置文本位置大小 (自动计算高度,根据宽度) |
|
*/ |
|
- (void)setFrameWithOrign:(CGPoint)orign Width:(CGFloat)width; |
|
|
|
|
|
@end |
|
|
|
|
|
#pragma mark - 扩展追加内容 (Append) |
|
// 追加内容 (添加在AttributedString最后) |
|
@interface TYAttributedLabel (AppendAttributedString) |
|
/** |
|
* 追加(添加到最后) 普通文本 |
|
* |
|
* @param text 普通文本 |
|
*/ |
|
- (void)appendText:(NSString *)text; |
|
|
|
/** |
|
* 追加(添加到最后) 属性文本 |
|
* |
|
* @param attributedText 属性文本 |
|
*/ |
|
- (void)appendTextAttributedString: (NSAttributedString *)attributedText; |
|
|
|
/** |
|
* 追加(添加到最后) textStorage (自定义显示内容) |
|
* |
|
* @param textStorage 自定义Storage(自定义显示内容) |
|
*/ |
|
- (void)appendTextStorage:(id<TYAppendTextStorageProtocol>)textStorage; |
|
|
|
/** |
|
* 追加(添加到最后) textStorage 数组 |
|
* |
|
* @param textStorageArray 自定义run数组(需遵循协议TYAppendTextStorageProtocol,否则不会添加) |
|
*/ |
|
- (void)appendTextStorageArray:(NSArray *)textStorageArray; |
|
|
|
@end |
|
|
|
#pragma mark - 扩展支持Link链接 |
|
@interface TYAttributedLabel (Link) |
|
|
|
/** |
|
* 添加 链接LinkTextStorage |
|
*/ |
|
- (void)addLinkWithLinkData:(id)linkData range:(NSRange )range; |
|
|
|
/** |
|
* 添加 链接LinkTextStorage |
|
* |
|
* @param linkData 链接携带的数据 |
|
* @param linkColor 链接颜色 |
|
* @param range 范围 |
|
*/ |
|
- (void)addLinkWithLinkData:(id)linkData linkColor:(UIColor *)linkColor range:(NSRange )range; |
|
|
|
- (void)addLinkWithLinkData:(id)linkData linkColor:(UIColor *)linkColor underLineStyle:(CTUnderlineStyle)underLineStyle range:(NSRange )range; |
|
|
|
/** |
|
* 追加 链接LinkTextStorage |
|
*/ |
|
- (void)appendLinkWithText:(NSString *)linkText linkFont:(UIFont *)linkFont linkData:(id)linkData; |
|
|
|
/** |
|
* 追加 链接LinkTextStorage |
|
* |
|
* @param linkText 链接文本 |
|
* @param linkData 链接携带的数据 |
|
*/ |
|
- (void)appendLinkWithText:(NSString *)linkText linkFont:(UIFont *)linkFont linkColor:(UIColor *)linkColor linkData:(id)linkData; |
|
|
|
- (void)appendLinkWithText:(NSString *)linkText linkFont:(UIFont *)linkFont linkColor:(UIColor *)linkColor underLineStyle:(CTUnderlineStyle)underLineStyle linkData:(id)linkData; |
|
|
|
@end |
|
|
|
#pragma mark - 扩展支持UIImage |
|
@interface TYAttributedLabel (UIImage) |
|
|
|
#pragma mark - addImageStorage |
|
|
|
/** |
|
* 添加 imageStorage image数据 |
|
*/ |
|
- (void)addImage:(UIImage *)image range:(NSRange)range; |
|
|
|
/** |
|
* 添加 imageStorage image数据 |
|
*/ |
|
- (void)addImage:(UIImage *)image range:(NSRange)range size:(CGSize)size; |
|
|
|
/** |
|
* 添加 imageStorage image数据 |
|
* |
|
* @param image image |
|
* @param range 所在文本位置 |
|
* @param size 图片大小 |
|
* @param alignment 图片对齐方式 |
|
*/ |
|
- (void)addImage:(UIImage *)image range:(NSRange)range |
|
size:(CGSize)size |
|
alignment: (TYDrawAlignment)alignment; |
|
|
|
/** |
|
* 添加 imageStorage image数据 |
|
*/ |
|
- (void)addImageWithName:(NSString *)imageName range:(NSRange)range; |
|
|
|
/** |
|
* 添加 imageStorage image数据 |
|
*/ |
|
- (void)addImageWithName:(NSString *)imageName |
|
range:(NSRange)range |
|
size:(CGSize)size; |
|
|
|
/** |
|
* 添加 imageStorage image数据 |
|
* |
|
* @param imageName image名 |
|
* @param range 所在文本位置 |
|
* @param size 图片大小 |
|
* @param alignment 图片对齐方式 |
|
*/ |
|
- (void)addImageWithName:(NSString *)imageName |
|
range:(NSRange)range |
|
size:(CGSize)size |
|
alignment:(TYDrawAlignment)alignment; |
|
|
|
#pragma mark - appendImageStorage |
|
|
|
/** |
|
* 追加 imageStorage image数据 |
|
*/ |
|
- (void)appendImage:(UIImage *)image; |
|
|
|
/** |
|
* 追加 imageStorage image数据 |
|
*/ |
|
- (void)appendImage:(UIImage *)image |
|
size:(CGSize)size; |
|
|
|
/** |
|
* 追加 imageStorage image数据 |
|
* |
|
* @param image image |
|
* @param size 图片大小 |
|
* @param alignment 图片对齐 |
|
*/ |
|
- (void)appendImage:(UIImage *)image |
|
size:(CGSize)size |
|
alignment:(TYDrawAlignment)alignment; |
|
|
|
/** |
|
* 追加 imageStorage image数据 |
|
*/ |
|
- (void)appendImageWithName:(NSString *)imageName; |
|
|
|
/** |
|
* 追加 imageStorage image数据 |
|
*/ |
|
- (void)appendImageWithName:(NSString *)imageName size:(CGSize)size; |
|
|
|
/** |
|
* 追加 imageStorage image数据 |
|
* |
|
* @param imageName imageName |
|
* @param size 图片大小 |
|
* @param alignment 图片对齐 |
|
*/ |
|
- (void)appendImageWithName:(NSString *)imageName |
|
size:(CGSize)size |
|
alignment:(TYDrawAlignment)alignment; |
|
|
|
@end |
|
|
|
#pragma mark - 扩展支持UIView |
|
@interface TYAttributedLabel (UIView) |
|
|
|
/** |
|
* 添加 viewStorage (添加 UI控件 需要设置frame) |
|
*/ |
|
- (void)addView:(UIView *)view range:(NSRange)range; |
|
|
|
/** |
|
* 添加 viewStorage (添加 UI控件 需要设置frame) |
|
* |
|
* @param view UIView (UI控件) |
|
* @param range 所在文本位置 |
|
* @param alignment view对齐方式 |
|
*/ |
|
- (void)addView:(UIView *)view |
|
range:(NSRange)range |
|
alignment:(TYDrawAlignment)alignment; |
|
|
|
/** |
|
* 追加 viewStorage (添加 UI控件 需要设置frame) |
|
*/ |
|
- (void)appendView:(UIView *)view; |
|
|
|
/** |
|
* 追加 viewStorage (添加 UI控件 需要设置frame) |
|
* |
|
* @param view UIView (UI控件) |
|
* @param alignment view对齐 |
|
*/ |
|
- (void)appendView:(UIView *)view alignment:(TYDrawAlignment)alignment; |
|
|
|
@end
|
|
|