Mac application development notes

这段时间一直在看Mac开发相关的书籍,相对于iOS来说,市面上写的比较好的数据少之又少,《macOSObjc》算是找到的写的比较好的了,但是大部分都是介绍控件的使用。与之相比的《Learn Objective-C on the Mac》写的很详细,不过只有英文版的,看了之后受益匪浅。

下面是看书时总结的笔记,接下来会持续更新。
1、Mac下获取电脑Application icon、name、bundle url

NSString *path = NSSearchPathForDirectoriesInDomains(NSApplicationDirectory, NSSystemDomainMask, YES).firstObject;
    NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtURL:[NSURL fileURLWithPath:path] includingPropertiesForKeys:@[NSURLLocalizedNameKey, NSURLIsApplicationKey, NSURLEffectiveIconKey] options:NSDirectoryEnumerationSkipsPackageDescendants | NSDirectoryEnumerationSkipsHiddenFiles errorHandler:^BOOL(NSURL * _Nonnull url, NSError * _Nonnull error) {
        if(error) {
            NSLog(@"error: %@", error.description);
        }
        return YES;
    }];
    
    for(NSURL *applicationURL in enumerator) {
        NSImage *applicationImage = nil;
        NSError *error;
        [applicationURL getResourceValue:&applicationImage forKey:NSURLEffectiveIconKey error:&error];
        
        NSString *applicationName;
        [applicationURL getResourceValue:&applicationName forKey:NSURLLocalizedNameKey error:&error];
    
        if(error) {
            NSLog(@"error ---> %@", error.description);
            return;
        }
        
        if(applicationName && applicationImage) {
            ApplicationModel *model = [[ApplicationModel alloc] init];
            model.image = applicationImage;
            model.name = applicationName;
            model.url = applicationURL;
            [self.dataArray addObject:model];
        }
    }
    NSLog(@"array - > %@", self.dataArray);

2、Mac下打开应用程序的代码

[[NSWorkspace sharedWorkspace] openURL:url];

3、获取Mac下所有在运行的app的代码

@property (nonatomic, strong) NSMutableArray *dataArr;

NSArray <NSRunningApplication *> *apps = [[NSWorkspace sharedWorkspace] runningApplications];
for(NSRunningApplication *app in apps) {
    [self.dataArr addObject:app.localizedName];
}
[self.tableView reloadData];

4、监听Mac上所有已经运行的app

  [[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(applicationDidRunning:) name:NSWorkspaceDidLaunchApplicationNotification object:nil];

5、kill进程代码

- (void)tableViewDoubleClick:(NSTableView *)tableView {
    NSInteger selectedIndex = [tableView selectedRow];
    ApplicationModel *model = self.dataArr[selectedIndex];
    
    NSAlert *alert = [[NSAlert alloc] init];
    alert.alertStyle = NSAlertStyleWarning;
    alert.messageText = @"温馨提示";
    alert.informativeText = @"确定要杀死该进城吗";
    [alert addButtonWithTitle:@"确定"];
    [alert addButtonWithTitle:@"取消"];
    
    __weak typeof(self) weakSelf = self;
    [alert beginSheetModalForWindow:self.view.window completionHandler:^(NSModalResponse returnCode) {
        if(returnCode == 1000) {
            kill(model.pid, SIGKILL);
            [weakSelf.dataArr removeObject:model];
            [weakSelf.tableView reloadData];
        }
    }];
}

6、NSTableView 双击事件

[self.tableView setDoubleAction:@selector(tableViewDoubleClick:)];

7、长按拖动NSTableViewCell,首先注册tableview

    [self.tableView registerForDraggedTypes:[NSArray arrayWithObject:CustomTableViewCellDrap]];

实现tableview拖动的delegate

- (BOOL)tableView:(NSTableView *)tableView writeRowsWithIndexes:(NSIndexSet *)rowIndexes toPasteboard:(NSPasteboard *)pboard {
    NSData *data = [NSKeyedArchiver archivedDataWithRootObject:rowIndexes];
    [pboard declareTypes:[NSArray arrayWithObject:CustomTableViewCellDrap] owner:self];
    [pboard setData:data forType:CustomTableViewCellDrap];
    self.originIndex = rowIndexes.firstIndex;
    return YES;
}

- (NSDragOperation)tableView:(NSTableView *)tableView validateDrop:(id<NSDraggingInfo>)info proposedRow:(NSInteger)row proposedDropOperation:(NSTableViewDropOperation)dropOperation {
    return NSDragOperationMove;
}

- (BOOL)tableView:(NSTableView *)tableView acceptDrop:(id<NSDraggingInfo>)info row:(NSInteger)row dropOperation:(NSTableViewDropOperation)dropOperation {
    id obj = self.dataArr[self.originIndex];
    [self.dataArr insertObject:obj atIndex:row];
    if(self.originIndex < row) {
        [self.dataArr removeObjectAtIndex:self.originIndex];
    }
    else {
        [self.dataArr removeObjectAtIndex:self.originIndex + 1];
    }
    return YES;
}

8、拖动NSCollectionViewCell,首先注册拖动事件

 [self.collection registerForDraggedTypes:@[NSPasteboardTypeString]];
    [self.collection setDraggingSourceOperationMask:NSDragOperationEvery forLocal:yearMask];
    [self.collection setDraggingSourceOperationMask:NSDragOperationEvery forLocal:NO];

其次实现拖动代理函数

@property (nonatomic, assign) NSIndexPath *currentIndex;
- (void)collectionView:(NSCollectionView *)collectionView draggingSession:(NSDraggingSession *)session willBeginAtPoint:(NSPoint)screenPoint forItemsAtIndexPaths:(NSSet<NSIndexPath *> *)indexPaths {
    self.currentIndex = indexPaths.allObjects.firstObject;
}

- (id<NSPasteboardWriting>)collectionView:(NSCollectionView *)collectionView pasteboardWriterForItemAtIndex:(NSUInteger)index {
    NSPasteboardItem *item = [[NSPasteboardItem alloc] init];
    ApplicationModel *model = self.dataArr[index];
    NSString *indexString = [NSString stringWithFormat:@"%@", model.path];
    [item setString:indexString forType:NSPasteboardTypeString];
    return item;
}

- (BOOL)collectionView:(NSCollectionView *)collectionView acceptDrop:(id<NSDraggingInfo>)draggingInfo index:(NSInteger)index dropOperation:(NSCollectionViewDropOperation)dropOperation {
    return YES;
}

- (NSDragOperation)collectionView:(NSCollectionView *)collectionView validateDrop:(id<NSDraggingInfo>)draggingInfo proposedIndexPath:(NSIndexPath *__autoreleasing  _Nonnull *)proposedDropIndexPath dropOperation:(NSCollectionViewDropOperation *)proposedDropOperation {
    if(*proposedDropOperation == NSCollectionViewDropBefore) {
        *proposedDropOperation = NSCollectionViewDropOn;
        return NSDragOperationNone;
    }
    [collectionView moveItemAtIndexPath:self.currentIndex toIndexPath:*proposedDropIndexPath];
    return NSDragOperationMove;
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,324评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,356评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,328评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,147评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,160评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,115评论 1 296
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,025评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,867评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,307评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,528评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,688评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,409评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,001评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,657评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,811评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,685评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,573评论 2 353

推荐阅读更多精彩内容

  • 1、通过CocoaPods安装项目名称项目信息 AFNetworking网络请求组件 FMDB本地数据库组件 SD...
    阳明先生_X自主阅读 15,979评论 3 119
  • 第八章 威胁 文/张悠扬 当付姿穿过漆黑的园林,来到一处偏僻的别屋时,周围一片安静,远处宴席的声音都只能隐隐约约听...
    张悠扬阅读 537评论 1 5
  • 狐狸对小王子说,驯养我吧,那么你对于我就是宇宙中独一无二,而我对于你也将是世界上唯一的。小王子驯养了狐狸,后来也离...
    BERRYSHUN阅读 235评论 0 1
  • 杨慧霞 洛阳 焦点解决讲师班二期 坚持分享第1022天 从来有病都是匆匆忙忙往医院跑、往药店赶。这段时间单...
    yhx慧心慧语阅读 297评论 0 0
  • 我学的专业是网络技术,其中涉及路由交换机、服务器,Linux系统操作。 我是李哲 来自河北邯郸 出了校门才知道已学...
    烽火_8e5d阅读 176评论 0 1