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

83 行
2.1KB

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