You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
658B

  1. #import <Preferences/PSListController.h>
  2. #import <Preferences/PSSpecifier.h>
  3. #define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
  4. @interface TFDTSRootListController : PSListController
  5. @property(strong, nonatomic) PSSpecifier *latestPostSpecifier;
  6. @property(strong, nonatomic) PSSpecifier *latestCommentSpecifier;
  7. - (void)checkLatest:(PSSpecifier *)arg1;
  8. - (void)performPushshiftRequest:(BOOL)isComment insertAfterSpecifier:(PSSpecifier *)arg2;
  9. - (void)insertLatestTimeCell:(NSDictionary *)data;
  10. - (void)possiblyBothChecksComplete:(PSSpecifier *)arg1;
  11. @end