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

14 行
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