mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
20 lines
445 B
C
20 lines
445 B
C
![]() |
//
|
||
|
// StoryTitleAttributedString.h
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Nicholas Riley on 1/6/2018.
|
||
|
// Copyright © 2018 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@interface StoryTitleAttributedString : NSObject <NSItemProviderWriting>
|
||
|
{
|
||
|
NSAttributedString *attributedString;
|
||
|
NSString *plainString;
|
||
|
}
|
||
|
|
||
|
- (instancetype)initWithAttributedString:(NSAttributedString *)attrStr plainString:(NSString *)plainStr;
|
||
|
|
||
|
@end
|