blob: 691d3d470dc10234436f57b9c1fe7044fd7f0b23 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// NSAttributedString+NSAttributedString_Entities.h
// Juick
//
// Created by Vitaly Takmazov on 23.09.2020.
// Copyright © 2020 com.juick. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NSAttributedString (Entities)
+(NSAttributedString *) attributedStringFromMessage:(Message *)message;
@end
NS_ASSUME_NONNULL_END
|