Mac Catalyst - macOS AppKit 插件

Mac Catalyst App如果需要在macOS上运行,就免不了要使用到macOS的特性,但光靠Mac Catalyst兼容的App Kit控件是远远不够的,此时就需要使用到AppKit插件了。

添加AppKit插件

首先需要添加一个Bundle Target,File -> New -> Target... -> macOS -> Bundle

MacCatalyst - AppKit Bundle.png

Product Name随便取一个,例子里取的名称为AppKitGlue,然后在主项目里添加插件

MacCatalyst - Add AppKit Bundle.png

设置仅macOS平台下可用

MacCatalyst - AppKit Bundle Platforms.png

为插件添加一个主类,选中AppKitGlue文件夹,File -> New -> File...(或Command + N) -> macOS -> Cocoa Class,例子里取的名称为AppKitGlue

MacCatalyst - Cocoa Class.png

AppKitGlue文件夹里的info.plist里设置Principal class

MacCatalyst - Principal class.png

AppKitGlue.m里添加以下代码,解决主窗口被关闭后应用程序也会被关闭或主窗口无法再次被打开的问题

#import "AppKitGlue.h"
#import <Cocoa/Cocoa.h>

@interface AppKitGlue () <NSApplicationDelegate ,NSWindowDelegate>

@property (nonatomic, strong) NSWindow *mainWindow;
@property (nonatomic, strong) NSStatusItem *statusBarItem;

@end

@implementation AppKitGlue

- (instancetype)init
{
    self = [super init];
    if (self) {
        
        // 重置APP代理
        NSApplication.sharedApplication.delegate = self;
        
        // 引用主窗口,一般此时NSApplication.sharedApplication.mainWindow为nil,视具体初始化时机而不同
        if (self.mainWindow == nil) {
            self.mainWindow = NSApplication.sharedApplication.mainWindow;
        }
        
        // 用于防止本对象初始化时机不对导致APP代理被系统重置,假如使用了多窗口且在SceneDelegate里初始化,就不需要此监听
        [NSNotificationCenter.defaultCenter addObserver:self
                                               selector:@selector(applicationDidBecomeActive:)
                                                   name:NSApplicationDidBecomeActiveNotification
                                                 object:nil];
        // 用于获取主窗口
        [NSNotificationCenter.defaultCenter addObserver:self
                                               selector:@selector(windowDidBecomeMain:)
                                                   name:NSWindowDidBecomeMainNotification
                                                 object:nil];
        
        // 状态栏按钮,用于激活应用程序窗口
        NSStatusItem *item  = [NSStatusBar.systemStatusBar statusItemWithLength:NSSquareStatusItemLength];
        item.button.action  = @selector(makeKeyAndOrderFrontMainWindow);
        item.button.target  = self;
        item.button.imageScaling = NSImageScaleProportionallyUpOrDown;
        item.button.image   = [NSImage imageNamed:NSImageNameApplicationIcon];
        self.statusBarItem  = item;
    }
    return self;
}

- (void)applicationDidBecomeActive:(NSNotification *)notification
{
    NSApplication.sharedApplication.delegate = self;
    
    [NSNotificationCenter.defaultCenter removeObserver:self
                                                  name:NSApplicationDidBecomeActiveNotification
                                                object:nil];
}

- (void)windowDidBecomeMain:(NSNotification *)notification
{
    NSWindow *mainWindow    = NSApplication.sharedApplication.mainWindow;
    if (self.mainWindow != nil || mainWindow == nil) {
        return;
    }
    self.mainWindow         = mainWindow;
    mainWindow.delegate     = self;
    
    [NSNotificationCenter.defaultCenter removeObserver:self
                                                  name:NSWindowDidBecomeMainNotification
                                                object:nil];
}

- (BOOL)windowShouldClose:(NSWindow *)sender
{
    // 主窗口不允许被关闭,只能后台(隐藏)
    if (sender == self.mainWindow) {
        [sender orderOut:nil];
        return NO;
    }
    return YES;
}

- (BOOL)applicationShouldHandleReopen:(NSApplication *)sender hasVisibleWindows:(BOOL)flag
{
    // 点击程序坞上的应用程序图标时,前置主窗口
    [self makeKeyAndOrderFrontMainWindow];
    return YES;
}

- (void)makeKeyAndOrderFrontMainWindow
{
    NSApplication *app = NSApplication.sharedApplication;
    if (app.isHidden) {
        [app unhide:nil];
    }
    if (app.isActive == NO) {
        // 激活窗口,否则窗口会出现无法响应事件的问题
        [app activateIgnoringOtherApps:YES];
        [[NSRunningApplication currentApplication] activateWithOptions:NSApplicationActivateAllWindows];
    }
    // 主窗口前置
    [self.mainWindow makeKeyAndOrderFront:nil];
}

@end

使用前需要导入头文件

#if TARGET_OS_MACCATALYST
#import "AppKitGlue.h"
#endif

在AppDelegate或单例中添加一个成员变量,用于强引用插件对象

#if TARGET_OS_MACCATALYST
@property (nonatomic, strong) AppKitGlue *appKitGlue;
#endif

初始化插件对象

#if TARGET_OS_MACCATALYST
NSString *plugInsPath       =
[NSBundle.mainBundle.builtInPlugInsPath stringByAppendingPathComponent:@"AppKitGlue.bundle"];
NSBundle *plugInsBundle     = [NSBundle bundleWithPath:plugInsPath];
self.appKitGlue             = [plugInsBundle.principalClass new];
#endif

现在主窗口被关闭后不会导致应用程序也被关闭了,且可通过点击程序坞上的图标或桌面顶部状态栏按钮激活应用程序(状态栏按钮图标可自定义,大小建议为16 * 16pt)

MacCatalyst - AppKit Bundle Example.png

与AppKitGlue互动例子:全局快捷键功能面板

配置CocoaPods,添加'MASShortcut';下面为Podfile的写法例子,'MacCatalyst'为主项目名称,'AppKitGlue'为插件名称

#inhibit_all_warnings!

target 'MacCatalyst' do
  
  platform :ios, '9.0'
  project 'MacCatalyst.xcodeproj'
  workspace 'MacCatalyst.xcworkspace'
  
end

target 'AppKitGlue' do
  
  platform :osx, '10.15'
  project 'MacCatalyst.xcodeproj'
  workspace 'MacCatalyst.xcworkspace'

  source 'https://github.com/CocoaPods/Specs.git'
  
  pod 'MASShortcut'
  
end

在AppKitGlue文件夹里新建macOS -> Cocoa Class文件,Subclass of为NSViewController,例子起名为ShortcutViewController

MacCatalyst - Cocoa Class.png
MacCatalyst - Create Cocoa Class File.png

然后再新建一个Storyboard文件,例子起名为ShortcutPanel.storyboard

MacCatalyst - Storyboard File.png

*此时AppKitGlue文件夹结构

MacCatalyst - AppKitGlue Folder.png

在ShortcutPanel.storyboard里添加一个Window Controller控件

MacCatalyst - Storyboard Library.png

点击Window Controller控件,勾选Is Initial Controller

MacCatalyst - Initial Window Controller.png

点击View Controller控件,Class设为ShortcutViewController

MacCatalyst - Storyboard Custom Class.png

往View Controller控件里添加一个Custom View,修改Class为MASShortcutView,链接到ShortcutViewController -> shortcutView

MacCatalyst - Storyboard Shortcut View.png

*以下例子中的key和notification name字符串建议用宏来代替,注意AppKitGlue里定义的字符串常量无法在主项目中使用

// ShortcutViewController.h

#import <Cocoa/Cocoa.h>
#import <MASShortcut/Shortcut.h>

@interface ShortcutViewController : NSViewController
@property (weak) IBOutlet MASShortcutView *shortcutView;
@end

初始化默认快捷键

// ShortcutViewController.m

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.shortcutView.associatedUserDefaultsKey = @"GlobalShortcutKey";
    
    // 假如没初始化过,就初始化快捷键
    NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
    if ([userDefaults boolForKey:@"ShortcutDidInitializationKey"] == NO) {
        
        // 默认全局快捷键为:Shift + Control + Command + A
        NSEventModifierFlags modifierFlags  =
        NSEventModifierFlagShift | NSEventModifierFlagControl | NSEventModifierFlagCommand;
        self.shortcutView.shortcutValue     =
        [MASShortcut shortcutWithKeyCode:kVK_ANSI_A modifierFlags:modifierFlags];
        
        [userDefaults setBool:YES forKey:@"ShortcutDidInitializationKey"];
        [userDefaults synchronize];
    }
    
    [[MASShortcutBinder sharedBinder] bindShortcutWithDefaultsKey:self.shortcutView.associatedUserDefaultsKey toAction:^{
        // 执行了快捷方式,发一条通知出去
        [NSNotificationCenter.defaultCenter postNotificationName:@"ShortcutExecutedNotification" object:nil];
    }];
}

在AppKitGlue初始化的同时生成快捷键面板窗口控制器

//  AppKitGlue.m

#import "AppKitGlue.h"
#import <Cocoa/Cocoa.h>

@interface AppKitGlue () <NSApplicationDelegate ,NSWindowDelegate>
@property (nonatomic, strong) NSWindowController *shortcutPanel;
/*已折叠的其他代码...*/
@end

@implementation AppKitGlue

- (instancetype)init
{
    self = [super init];
    if (self) {
        /*已折叠的其他代码...*/
        
        // 生成快捷键面板
        [self shortcutPanel];
        
        // 如果要显示快捷键面板,就发出此通知
        [NSNotificationCenter.defaultCenter addObserver:self
                                               selector:@selector(orderFrontShortcutPanel)
                                                   name:@"OrderFrontShortcutPanelNotification"
                                                 object:nil];
    }
    return self;
}

/*已折叠的其他代码...*/

- (NSWindowController *)shortcutPanel
{
    if (_shortcutPanel == nil) {
        NSString *plugInsPath       =
        [NSBundle.mainBundle.builtInPlugInsPath stringByAppendingPathComponent:@"AppKitGlue.bundle"];
        NSBundle *plugInsBundle     = [NSBundle bundleWithPath:plugInsPath];
        NSStoryboard *storyboard    =
        [NSStoryboard storyboardWithName:@"ShortcutPanel" bundle:plugInsBundle];
        NSWindowController *windowController = [storyboard instantiateInitialController];
        // 以下为样式设置,非必要的
        NSWindow *window            = windowController.window;
        [window standardWindowButton:NSWindowMiniaturizeButton].hidden  = YES;
        [window standardWindowButton:NSWindowZoomButton].hidden         = YES;
        window.movableByWindowBackground                                = YES;
        window.titlebarAppearsTransparent                               = YES;
        window.styleMask            |= NSWindowStyleMaskFullSizeContentView;
        window.collectionBehavior   |= NSWindowCollectionBehaviorFullScreenNone;
        window.title                = @"Shortcut";
        _shortcutPanel              = windowController;
    }
    return _shortcutPanel;
}

- (void)orderFrontShortcutPanel
{
    // 激活且前置快捷键窗口
    [self.shortcutPanel showWindow:nil];
}

接收快捷键事件例子

// ViewController.m

- (void)viewDidLoad {
    [super viewDidLoad];
    
    [NSNotificationCenter.defaultCenter addObserver:self
                                           selector:@selector(shortcutExecuted:)
                                               name:@"ShortcutExecutedNotification"
                                             object:nil];
}

- (void)shortcutExecuted:(NSNotification *)notification
{
    UIAlertController *alert =
    [UIAlertController alertControllerWithTitle:@"执行了快捷方式"
                                        message:nil
                                 preferredStyle:UIAlertControllerStyleAlert];
    
    [alert addAction:[UIAlertAction actionWithTitle:@"确定"
                                              style:UIAlertActionStyleCancel
                                            handler:nil]];
    
    [self presentViewController:alert
                       animated:YES
                     completion:nil];
}
MacCatalyst - Shortcut Executed.png

显示快捷键面板调用此方法

[NSNotificationCenter.defaultCenter postNotificationName:@"OrderFrontShortcutPanelNotification" object:nil];
MacCatalyst - Show Shortcut Panel.png

示例代码:https://github.com/LeungKinKeung/MacCatalyst

参考文章:https://www.highcaffeinecontent.com/blog/20190607-Beyond-the-Checkbox-with-Catalyst-and-AppKit

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念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

推荐阅读更多精彩内容