Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

132 Zeilen
3.8KB

  1. /* -- Comment Interfaces -- */
  2. @interface RKComment
  3. @property(assign,nonatomic) NSString* author;
  4. @property(assign,nonatomic) NSString* parentID;
  5. @property(assign,nonatomic) NSString* body;
  6. @property(assign,nonatomic) NSString* fullName;
  7. -(BOOL) isSaved;
  8. @end
  9. @interface NRTCommentsManager
  10. @property(assign,nonatomic) NSMutableArray* comments;
  11. -(void) updateComment:(id) arg1 fromEdited:(id) arg2;
  12. @end
  13. /* -- Post Interfaces -- */
  14. @interface RKLink
  15. @property(assign,nonatomic) NSString* author;
  16. @property(assign,nonatomic) NSString* selfText;
  17. @property(assign,nonatomic) NSString* fullName;
  18. @end
  19. @interface NRTLinkTitleCell
  20. -(void) configureCellForLink:(id) arg1;
  21. @end
  22. @interface NRTLinkTextCell
  23. @property(assign,nonatomic) id bodyLabel;
  24. -(void) configureCellForText:(id) arg1 links:(id) arg2;
  25. @end
  26. /* -- Other Interfaces -- */
  27. @interface NRTAuthManager
  28. @property(assign,nonatomic) NSString* currentUsername;
  29. +(id) sharedManager;
  30. @end
  31. @interface NRTMarkdownManager
  32. +(id) attributedStringFromMarkdown:(id) arg1 type:(id) arg2;
  33. @end
  34. @interface NRTAttributedLabel
  35. @property(assign,nonatomic) id attributedText;
  36. @end
  37. @interface NRTMediaViewController : UIViewController
  38. @end
  39. @interface NRTLinkViewController : UIViewController
  40. @property(assign,nonatomic) id comment;
  41. @property(assign,nonatomic) id commentsManager;
  42. @property(assign,nonatomic) id linkTextOffscreenCell;
  43. @property(assign,nonatomic) id linkTitleOffscreenCell;
  44. @property(assign,nonatomic) id link;
  45. @property(assign,nonatomic) id linkText;
  46. @property(assign,nonatomic) id tableView;
  47. -(void) _handleActionSheetCopyCommentText:(id) arg1;
  48. -(void) _handleActionSheetDeleteComment:(id) arg1;
  49. -(void) _handleActionSheetDeletePost;
  50. -(void) _handleActionSheetEditComment:(id) arg1;
  51. -(void) _handleActionSheetEditPost;
  52. -(void) _handleActionSheetOpenChrome;
  53. -(void) _handleActionSheetOpenSafari;
  54. -(void) _handleActionSheetPrivateMessage:(id) arg1;
  55. -(void) _handleActionSheetRefreshComments;
  56. -(void) _handleActionSheetRefreshPost;
  57. -(void) _handleActionSheetReportComment:(id) arg1;
  58. -(void) _handleActionSheetReportPost;
  59. -(void) _handleActionSheetSaveComment:(id) arg1 index:(NSUInteger) arg2;
  60. -(void) _handleActionSheetShareComment:(id) arg1;
  61. -(void) _handleActionSheetShareLink;
  62. -(void) _handleActionSheetSharePost;
  63. -(void) _handleActionSheetSortComments;
  64. -(void) _handleActionSheetUnsaveComment:(id) arg1 index:(NSUInteger) arg2;
  65. -(void) _handleActionSheetViewParent:(id) arg1;
  66. -(void) _handleActionSheetViewProfile:(id) arg1;
  67. //custom elements
  68. -(void) handleUndeleteAction:(id) arg1;
  69. -(void) handleUndeletePostAction;
  70. -(void) mainThreadTest:(id) arg1;
  71. @end
  72. @interface NRTMediaTableViewDataSource
  73. @property(assign,nonatomic) id commentsManager;
  74. @property(assign,nonatomic) id parentController;
  75. -(void) _handleActionSheetCopyCommentText:(id) arg1;
  76. -(void) _handleActionSheetDeleteComment:(id) arg1;
  77. -(void) _handleActionSheetDeletePost;
  78. -(void) _handleActionSheetEditComment:(id) arg1;
  79. -(void) _handleActionSheetEditPost;
  80. -(void) _handleActionSheetOpenChrome;
  81. -(void) _handleActionSheetOpenSafari;
  82. -(void) _handleActionSheetPrivateMessage:(id) arg1;
  83. -(void) _handleActionSheetRefreshComments;
  84. -(void) _handleActionSheetRefreshPost;
  85. -(void) _handleActionSheetReportComment:(id) arg1;
  86. -(void) _handleActionSheetReportPost;
  87. -(void) _handleActionSheetSaveComment:(id) arg1 index:(NSUInteger) arg2;
  88. -(void) _handleActionSheetShareComment:(id) arg1;
  89. -(void) _handleActionSheetShareLink;
  90. -(void) _handleActionSheetSharePost;
  91. -(void) _handleActionSheetSortComments;
  92. -(void) _handleActionSheetUnsaveComment:(id) arg1 index:(NSUInteger) arg2;
  93. -(void) _handleActionSheetViewParent:(id) arg1;
  94. -(void) _handleActionSheetViewProfile:(id) arg1;
  95. //custom elements
  96. -(void) handleUndeleteCommentAction:(id) comment;
  97. @end