Device battery indicators on your Lock Screen
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.

KAIRootListController.h 934B

il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
1234567891011121314151617181920212223242526272829303132333435363738
  1. #import <Preferences/PSListController.h>
  2. #import <Preferences/PSTableCell.h>
  3. #import <Preferences/PSSpecifier.h>
  4. #import <Preferences/PSListItemsController.h>
  5. #import <Foundation/NSUserDefaults.h>
  6. @interface PSListController (kai)
  7. -(void)setFrame:(CGRect)frame;
  8. @end
  9. @interface NSTask : NSObject
  10. @property(copy) NSArray *arguments;
  11. @property(copy) NSString *launchPath;
  12. - (id)init;
  13. - (void)waitUntilExit;
  14. - (void)launch;
  15. @end
  16. @interface KAIRootListController : PSListController
  17. @property (nonatomic, strong) UILabel *titleLabel;
  18. @property (nonatomic, strong) UIImageView *iconView;
  19. -(void)followMeOnRedditBurritoz;
  20. @end
  21. @interface Thomz_TwitterCell : PSTableCell
  22. @end
  23. @protocol PreferencesTableCustomView
  24. - (id)initWithSpecifier:(id)arg1;
  25. @end
  26. @interface KaiHeaderCell : PSTableCell <PreferencesTableCustomView> {
  27. UIView *bgView;
  28. UILabel *packageNameLabel;
  29. UILabel *developerLabel;
  30. UILabel *versionLabel;
  31. }
  32. @end