1

我正在完全以编程方式制作 UI。(没有 IB)我做了一个 NSWindow,并附加了一个 NSSplitView。问题是当窗口在程序启动时出现时,拆分视图的第一个子视图总是折叠起来。

如何在启动时强制显示拆分视图的所有子视图?

4

1 回答 1

1

这种问题很难证明原因,因为它需要了解闭源程序的内部知识。

所以原因未知,但是当我NSSplitView在添加子视图之前将 的初始大小设置为非零值时会显示子视图。

NSSplitView* v  = [[NSSplitView alloc] init];
NSView*      v2 = [[NSView alloc] init];
v.frame  = NSRectFromCGRect(CGRectMake(0,0,100,100));  // Added this line.
v2.frame = NSRectFromCGRect(CGRectMake(0,0,50,100));  // Added this line.
[v addSubview:v2];  // And then, add subview. 

我猜NSSplitView它的当前可用大小有一些内部子视图布局行为。据我观察,

  • 将子视图添加到零大小NSSplitView永远无法正常工作。

更新

从 OS X 10.10 开始,Cocoa 引入了一个新的类NSSplitViewController,它运行良好。我强烈推荐使用这个。它完全基于自动布局,因此您需要使用自动布局约束来设置大小。

我写了一个工作示例项目,这里是复制的代码片段。

    func make1() -> NSViewController {
        let vc1     =   NSViewController()
        vc1.view    =   NSView()
        vc1.view.wantsLayer =   true
        vc1.view.layer!.backgroundColor =   NSColor.blueColor().CGColor
        return  vc1
    }
    func setup1(vc1:NSViewController) {
        /// Layout constraints must be installed after the view is added to a view hierarchy.
        split1.view.addConstraint(NSLayoutConstraint(item: vc1.view, attribute: NSLayoutAttribute.Width, relatedBy: NSLayoutRelation.GreaterThanOrEqual, toItem: nil, attribute: NSLayoutAttribute.NotAnAttribute, multiplier: 0, constant: 20))
        split1.view.addConstraint(NSLayoutConstraint(item: vc1.view, attribute: NSLayoutAttribute.Width, relatedBy: NSLayoutRelation.LessThanOrEqual, toItem: nil, attribute: NSLayoutAttribute.NotAnAttribute, multiplier: 0, constant: 300))
    }

    split1.addSplitViewItem(NSSplitViewItem(viewController: make1()))
    split1.addSplitViewItem(NSSplitViewItem(viewController: make1()))
    split1.addSplitViewItem(NSSplitViewItem(viewController: make1()))

    setup1(split1.splitViewItems[0].viewController)
    setup1(split1.splitViewItems[1].viewController)
    setup1(split1.splitViewItems[2].viewController)
于 2013-05-22T16:32:31.747 回答