MAC 开发 简介

作者: _哼哼_ | 来源:发表于2017-08-31 18:16 被阅读86次

    一、比较 iOS & OS X

    开发环境而言,它们使用同样的开发语言,同样的IDE.

    共用相同的框架:Foundation,Core Data 和 Core Animation

    UI 是基于 window 和 view 构建起来的,消息像 iOS 一样通过响应者链传递。此外,UIView 是 NSView,UIControl 是 NSControl,UIImage 是 NSImage,UIViewController 是 NSViewController,UITextView 是 NSTextView... 都是基于NS 前缀。
    坐标原点是以左下角为(0,0)

    二、工程创建

    Xcode新建工程选择 macOS 的 cocoaApplication

    create.png

    默认会会从创建一个 Main.storyboard 中启动,开发过程中新建的类都是macOS下的cocoaClass。

    class.png

    三、展示

    NSWindow,NSViewcontroller,NSView
    显示新页面方式:
    在当前页面中可调用 NSViewController 方法 也可以调用 NSApp 方法

    SecondViewController *vc = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];
    //顶部弹出
    [self presentViewControllerAsSheet:vc];
    //弹出一个新的window
    [self presentViewControllerAsModalWindow:vc];
    // 消失
    [self dismissController:nil];  (被弹出的页面调用)
    [self dismissViewController:vc]; (弹出者调用)
    
    //NSApp 弹出新的window
    NSWindow *window = [NSWindow new];
    window.contentViewController = vc;
    NSModalResponse code = [NSApp runModalForWindow:window];
    //对应的消失 方法
    [NSApp stopModal]; //code = NSModalResponseStop
    [NSApp stopModalWithCode:stopCode]; //code = stopCode
    [NSApp abortModal];// code = NSModalResponseAbort
    
    presentViewControllerAsSheet.png presentViewControllerAsModalWindow.png

    常见用法

    1.NSWindow

    默认窗口都是可缩放的,若要固定一个窗口大小,两种方式:
    1.设置window的minSize ,contentMinSize,maxSize,contentMaxSize
    2.window 的contentViewController.view增加宽高约束

    标题显示隐藏

    window.titleVisibility = NSWindowTitleHidden(隐藏);NSWindowTitleVisible(显示);
    
    image.png

    透明titlebar

    window.titlebarAppearsTransparent = YES;
    
    image.png

    获取左上角按钮

    //最小化
    NSButton *minizturize = [window standardWindowButton:NSWindowMiniaturizeButton];
    //关闭
    NSButton *close = [window standardWindowButton:NSWindowCloseButton];
    //最大化
    NSButton *zoom = [window standardWindowButton:NSWindowZoomButton];
    //隐藏最大化按钮
    zoom.hidden = YES;
    
    2.NSView

    设置背景色方法

    [view setWantsLayer:YES];
    view.layer.backgroundColor = [NSColor redColor].CGColor;
    

    以左上角为(0,0)重写NSView的flipped属性

    - (BOOL)isFlipped {
      return YES;
    }
    

    效果如下:


    image.png

    不能用weak修饰的几个类

    NSATSTypesetter, NSColorSpace, NSFont, NSMenuView,NSTextView(<10_12).

    参考链接:
    http://www.jianshu.com/p/81294f05ae84
    http://www.jianshu.com/p/feadeb1ae7ae

    相关文章

      网友评论

        本文标题:MAC 开发 简介

        本文链接:https://www.haomeiwen.com/subject/hbbzdxtx.html