şunun yansıması
https://github.com/Burrit0z/Dockify_Source.git
eşitlendi 2025-07-03 05:16:46 +00:00
22 satır
518 B
Objective-C
Çalıştırılabilir Dosya
22 satır
518 B
Objective-C
Çalıştırılabilir Dosya
#include "burRootListController.h"
|
|
|
|
@implementation burRootListController
|
|
|
|
- (NSArray *)specifiers {
|
|
if (!_specifiers) {
|
|
_specifiers = [self loadSpecifiersFromPlistName:@"Root" target:self];
|
|
}
|
|
|
|
return _specifiers;
|
|
}
|
|
|
|
-(void)respring:(PSSpecifier *)specifier {
|
|
PSTableCell *cell = [self cachedCellForSpecifier:specifier];
|
|
cell.cellEnabled = NO;
|
|
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
|
|
[HBRespringController respring];
|
|
});
|
|
}
|
|
|
|
@end
|