Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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