選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

59 行
1.8KB

  1. /* -- Comment Interfaces -- */
  2. @interface RComment
  3. @property(strong, nonatomic) NSString *subreddit;
  4. @property(strong, nonatomic) NSString *author;
  5. @property(strong, nonatomic) NSString *body;
  6. @property(strong, nonatomic) NSString *id;
  7. @end
  8. @interface CommentDepthCell
  9. -(void) showMenu:(id) arg1;
  10. //custom elements
  11. -(void) addUndeleteButtonToMenu;
  12. @end
  13. /* -- Post Interfaces -- */
  14. @interface RSubmission
  15. @property(assign, nonatomic) BOOL isSelf;
  16. @end
  17. @interface CommentViewController : UIViewController
  18. -(void) refresh:(id) arg1;
  19. //custom elements
  20. @property(strong, nonatomic) UIButton *undeleteButton;
  21. -(void) addUndeleteButtonToToolbar;
  22. -(BOOL) shouldAddUndeleteButtonToToolbar;
  23. @end
  24. /* -- Utility Interfaces -- */
  25. @interface UIColor ()
  26. +(UIColor *) colorWithHex:(NSString *) arg1;
  27. -(NSString *) hexString;
  28. @end
  29. @interface NSAttributedString ()
  30. -(void) yy_setTextHighlightRange:(NSRange) range color:(UIColor *) color backgroundColor:(UIColor *) backgroundColor userInfo:(NSDictionary *) userInfo;
  31. @end
  32. @interface ColorUtil : NSObject
  33. +(UIColor *) accentColorForSub:(NSString *) arg1;
  34. +(UIColor *) fontColorForTheme:(NSString *) arg1;
  35. +(UIColor *) backgroundColorForTheme:(NSString *) arg1;
  36. @end
  37. @interface DTHTMLAttributedStringBuilder
  38. -(id) initWithHTML:(NSData *)data options:(NSDictionary *)options documentAttributes:(NSDictionary * __autoreleasing*)docAttributes;
  39. -(NSAttributedString *) generatedAttributedString;
  40. @end
  41. @interface FontGenerator : NSObject
  42. +(UIFont *) fontOfSize:(CGFloat) arg1 submission:(BOOL) arg2 willOffset:(BOOL) arg3;
  43. +(UIFont *) boldFontOfSize:(CGFloat) arg1 submission:(BOOL) arg2 willOffset:(BOOL) arg3;
  44. +(UIFont *) italicFontOfSize:(CGFloat) arg1 submission:(BOOL) arg2 willOffset:(BOOL) arg3;
  45. @end