1
0
mirror of https://github.com/lint/TFDidThatSay synced 2025-07-04 16:36:46 +00:00

Fix Apollo author labels

This commit is contained in:
lint
2020-01-10 13:55:28 -05:00
parent 6d7d6bcb73
commit 369e3becf2
2 changed files with 40 additions and 25 deletions

View File

@ -26,6 +26,9 @@
@property(assign,nonatomic) NSString *author;
@property(assign,nonatomic) NSString *fullName;
-(BOOL) isSelfPost;
//custom elements
@property(strong, nonatomic) NSString *undeleteAuthor;
@end
@interface CommentsHeaderCellNode
@ -68,10 +71,12 @@
@interface ASTextNode
@property(assign,nonatomic) CGRect frame;
@property(assign,nonatomic) id attributedString;
@property(assign,nonatomic) id attributedText;
@property(assign,nonatomic) NSAttributedString *attributedString;
@property(assign,nonatomic) NSAttributedString *attributedText;
@end
@interface ApolloButtonNode
@property(assign,nonatomic) NSArray *subnodes;
@property(assign,nonatomic) ASTextNode *titleNode;
-(void) setAttributedTitle:(id) arg1 forState:(NSInteger) arg2;
-(id) attributedTitleForState:(NSInteger) arg1;
@end