一个兼容MacOS和iOS的XIB桥接库(LYNibBridge)

前言

在iOS开发时,关于XIB桥接,有一个孙源大神开源的库:XXNibBridge,具体原理就是运行时替换了系统的方法,拦截要桥接的视图,替换为xib加载的视图,就像这样:

效果图.png

自定义视图.png

storyboard中我们看到的.png

由于需要搞MacOS开发,就突发奇想是不是可以把这个用在Mac开发上,在实践中稍微踩了一点坑,最终实现了Mac上与iOS通用的库:LYNibBridge,有需要的同学可以直接拿走使用,实现原理与iOS端一样,想了解的可以查看阳神的博客:xib的动态桥接

坑点

在Mac上实现时遇到了一个问题,采用跟iOS一样的代码运行起来查看不到实际的效果,同时打印台会提示错误:

Failed to set (contentViewController) user defined inspected property on (NSWindow): <LYBridgeTestView 0x604000121a40> has reached dealloc but still has a super view. Super views strongly reference their children, so this is being over-released, or has been over-released in the past

大致意思就是子视图已经释放,但是父视图还持有这个子视图对象

解决方案

方案1.

在创建完自定义的XIB试图后调用[placeholderView removeFromSuperview];
代码大致如下:

+ (UIView *)instantiateRealViewFromPlaceholder:(UIView *)placeholderView {
    
    // Required to conform `XXNibConvension`.
    UINibBridgeView *realView = [[placeholderView class] ly_instantiateFromNib];
    
    realView.frame = placeholderView.frame;
    realView.bounds = placeholderView.bounds;
    realView.hidden = placeholderView.hidden;
    realView.autoresizingMask = placeholderView.autoresizingMask;
    realView.autoresizesSubviews = placeholderView.autoresizesSubviews;
    realView.translatesAutoresizingMaskIntoConstraints = placeholderView.translatesAutoresizingMaskIntoConstraints;
#if TARGET_OS_OSX
    realView.focusRingType = placeholderView.focusRingType;
    realView.canDrawConcurrently = placeholderView.canDrawConcurrently;
    realView.accessibilityEnabled = placeholderView.accessibilityEnabled;
    realView.appearance = placeholderView.appearance;
#else
    realView.tag = placeholderView.tag;
    realView.clipsToBounds = placeholderView.clipsToBounds;
    realView.userInteractionEnabled = placeholderView.userInteractionEnabled;
#endif
    // Copy autolayout constrains.
    if (placeholderView.constraints.count > 0) {
        
        // We only need to copy "self" constraints (like width/height constraints)
        // from placeholder to real view
        for (NSLayoutConstraint *constraint in placeholderView.constraints) {
            
            NSLayoutConstraint* newConstraint;
            
            // "Height" or "Width" constraint
            // "self" as its first item, no second item
            if (!constraint.secondItem) {
                newConstraint =
                [NSLayoutConstraint constraintWithItem:realView
                                             attribute:constraint.firstAttribute
                                             relatedBy:constraint.relation
                                                toItem:nil
                                             attribute:constraint.secondAttribute
                                            multiplier:constraint.multiplier
                                              constant:constraint.constant];
            }
            // "Aspect ratio" constraint
            // "self" as its first AND second item
            else if ([constraint.firstItem isEqual:constraint.secondItem]) {
                newConstraint =
                [NSLayoutConstraint constraintWithItem:realView
                                             attribute:constraint.firstAttribute
                                             relatedBy:constraint.relation
                                                toItem:realView
                                             attribute:constraint.secondAttribute
                                            multiplier:constraint.multiplier
                                              constant:constraint.constant];
            }
            
            // Copy properties to new constraint
            if (newConstraint) {
                newConstraint.shouldBeArchived = constraint.shouldBeArchived;
                newConstraint.priority = constraint.priority;
                newConstraint.identifier = constraint.identifier;
                [realView addConstraint:newConstraint];
            }
        }
    }
#if TARGET_OS_OSX
//    problem exists use stackView as superview,you can embed it in an empty view
    if ([[placeholderView superview] isKindOfClass:[NSStackView class]]) {
        NSAssert(NO, @"can't use stackView as it's superview");
    } else {
        [placeholderView removeFromSuperview];
    }
#endif
    
    return realView;
}
存在的问题:

在MacOS上无法使用OSStackView,使用OSStackView嵌套自定义XIB视图,在这里尝试调用[placeholderView removeFromSuperview];会提示EXC_BAD_ACCESS崩溃

方案2.

给NSView增加一个属性,使用创建完成的XIB桥接视图持有这个placeholderView,这样一来placeholderView就不会被释放掉,同时支持使用OSStackView,完美解决了痛点!

+ (UIView *)instantiateRealViewFromPlaceholder:(UIView *)placeholderView {
    
    // Required to conform `XXNibConvension`.
    UINibBridgeView *realView = [[placeholderView class] ly_instantiateFromNib];
    
    realView.frame = placeholderView.frame;
    realView.bounds = placeholderView.bounds;
    realView.hidden = placeholderView.hidden;
    realView.autoresizingMask = placeholderView.autoresizingMask;
    realView.autoresizesSubviews = placeholderView.autoresizesSubviews;
    realView.translatesAutoresizingMaskIntoConstraints = placeholderView.translatesAutoresizingMaskIntoConstraints;
#if TARGET_OS_OSX
    realView.focusRingType = placeholderView.focusRingType;
    realView.canDrawConcurrently = placeholderView.canDrawConcurrently;
    realView.accessibilityEnabled = placeholderView.accessibilityEnabled;
    realView.appearance = placeholderView.appearance;
    realView.ly_placeholderView = placeholderView;
#else
    realView.tag = placeholderView.tag;
    realView.clipsToBounds = placeholderView.clipsToBounds;
    realView.userInteractionEnabled = placeholderView.userInteractionEnabled;
#endif
    // Copy autolayout constrains.
    if (placeholderView.constraints.count > 0) {
        
        // We only need to copy "self" constraints (like width/height constraints)
        // from placeholder to real view
        for (NSLayoutConstraint *constraint in placeholderView.constraints) {
            
            NSLayoutConstraint* newConstraint;
            
            // "Height" or "Width" constraint
            // "self" as its first item, no second item
            if (!constraint.secondItem) {
                newConstraint =
                [NSLayoutConstraint constraintWithItem:realView
                                             attribute:constraint.firstAttribute
                                             relatedBy:constraint.relation
                                                toItem:nil
                                             attribute:constraint.secondAttribute
                                            multiplier:constraint.multiplier
                                              constant:constraint.constant];
            }
            // "Aspect ratio" constraint
            // "self" as its first AND second item
            else if ([constraint.firstItem isEqual:constraint.secondItem]) {
                newConstraint =
                [NSLayoutConstraint constraintWithItem:realView
                                             attribute:constraint.firstAttribute
                                             relatedBy:constraint.relation
                                                toItem:realView
                                             attribute:constraint.secondAttribute
                                            multiplier:constraint.multiplier
                                              constant:constraint.constant];
            }
            
            // Copy properties to new constraint
            if (newConstraint) {
                newConstraint.shouldBeArchived = constraint.shouldBeArchived;
                newConstraint.priority = constraint.priority;
                newConstraint.identifier = constraint.identifier;
                [realView addConstraint:newConstraint];
            }
        }
    }
    return realView;
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,194评论 6 490
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,058评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,780评论 0 346
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,388评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,430评论 5 384
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,764评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,907评论 3 406
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,679评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,122评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,459评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,605评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,270评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,867评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,734评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,961评论 1 265
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,297评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,472评论 2 348

推荐阅读更多精彩内容

  • 1、通过CocoaPods安装项目名称项目信息 AFNetworking网络请求组件 FMDB本地数据库组件 SD...
    阳明先生_X自主阅读 15,969评论 3 119
  • 大王wxd阅读 610评论 4 7
  • 春节的脚步还未走远之际,节日的喜庆还洋溢在每个人的脸上之时,前旗四中人迎来了校本培训的如期举行。 2018年2...
    王小唐阅读 133评论 0 0
  • “千年的文字会说话”,听过这句话吗?今天无意间看到,前不久撕得热闹的郭师傅说的。 学会用文字记录自己的所思所想,正...
    happy小晶阅读 266评论 0 1
  • 对恋爱充满了美好的期待 同时也害怕恋爱所带来的期骗 以及与感情洁癖相违背的事情 和最后感情逐渐变淡走向衰落的过程 ...
    寒潭白鱼阅读 129评论 0 0