No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

105 líneas
2.7KB

  1. /* -- Comment Interfaces -- */
  2. @interface RKComment
  3. @property(strong, nonatomic) NSString *body;
  4. @property(strong, nonatomic) NSString *bodyHTML;
  5. @property(strong, nonatomic) NSString *author;
  6. @property(strong, nonatomic) NSString *fullName;
  7. @end
  8. @interface RDKComment
  9. @property(strong, nonatomic) NSString *body;
  10. @property(strong, nonatomic) NSString *bodyHTML;
  11. @property(strong, nonatomic) NSString *author;
  12. @property(strong, nonatomic) NSString *fullName;
  13. @end
  14. @interface CommentCellNode
  15. @property(strong, nonatomic) id view;
  16. - (BOOL)isSelected;
  17. - (void)_layoutSublayouts;
  18. - (void)didLoad;
  19. - (void)calculatedLayoutDidChange;
  20. //custom elements
  21. @property(strong,nonatomic) UIButton *undeleteButton;
  22. - (void)undeleteCellWasSelected;
  23. @end
  24. /* -- Post Interfaces -- */
  25. @interface RKLink
  26. @property(strong, nonatomic) NSString *selfText;
  27. @property(strong, nonatomic) NSString *author;
  28. @property(strong, nonatomic) NSString *fullName;
  29. - (BOOL)isSelfPost;
  30. //custom elements
  31. @property(strong, nonatomic) NSString *undeleteAuthor;
  32. @end
  33. @interface RDKLink
  34. @property(strong, nonatomic) NSString *selfText;
  35. @property(strong, nonatomic) NSString *author;
  36. @property(strong, nonatomic) NSString *fullName;
  37. - (BOOL)isSelfPost;
  38. //custom elements
  39. @property(strong, nonatomic) NSString *undeleteAuthor;
  40. @end
  41. @interface CommentsHeaderCellNode
  42. @property(strong, nonatomic) id undeleteButton;
  43. @property(strong, nonatomic) id closestViewController;
  44. @end
  45. @interface CommentsViewController
  46. //custom elements
  47. @property(strong, nonatomic) id headerCellNode;
  48. - (void)undeleteCellWasSelected;
  49. @end
  50. /* -- Other Interfaces -- */
  51. @interface MarkdownRenderer
  52. + (id)attributedStringFromMarkdown:(id)arg1 withAttributes:(id)arg2;
  53. @end
  54. @interface ActionController
  55. - (id)tableView:(id)arg1 cellForRowAtIndexPath:(NSIndexPath *)arg2;
  56. - (NSInteger)tableView:(id)arg1 numberOfRowsInSection:(NSInteger)arg2;
  57. @end
  58. @interface UIImage (ios13)
  59. + (id)systemImageNamed:(NSString *)arg1;
  60. @end
  61. @interface IconActionTableViewCell : UITableViewCell
  62. @end
  63. /* -- ASyncDisplayKit Interfaces -- */
  64. @interface _ASDisplayView : UIView
  65. @end
  66. @interface ASImageNode
  67. @property(strong, nonatomic) id image;
  68. @property(assign, nonatomic) CGRect frame;
  69. @property(strong, nonatomic) id view;
  70. - (CGRect)_frameInWindow;
  71. @end
  72. @interface ASTextNode
  73. @property(assign, nonatomic) CGRect frame;
  74. @property(strong, nonatomic) NSAttributedString *attributedString;
  75. @property(strong, nonatomic) NSAttributedString *attributedText;
  76. @end
  77. @interface ApolloButtonNode
  78. @property(strong, nonatomic) ASTextNode *titleNode;
  79. - (void) setAttributedTitle:(id)arg1 forState:(NSInteger)arg2;
  80. - (id) attributedTitleForState:(NSInteger)arg1;
  81. @end