The source code, duh.
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.

22 lines
518B

  1. #include "burRootListController.h"
  2. @implementation burRootListController
  3. - (NSArray *)specifiers {
  4. if (!_specifiers) {
  5. _specifiers = [self loadSpecifiersFromPlistName:@"Root" target:self];
  6. }
  7. return _specifiers;
  8. }
  9. -(void)respring:(PSSpecifier *)specifier {
  10. PSTableCell *cell = [self cachedCellForSpecifier:specifier];
  11. cell.cellEnabled = NO;
  12. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  13. [HBRespringController respring];
  14. });
  15. }
  16. @end