How do I make an NSView move to the front of all NSViews

前端 未结 7 1047
既然无缘
既然无缘 2020-12-28 12:47

I have a super view, which has 2 subviews. These subviews are overlapped.

Whenever i choose a view from a menu, corresponding view should become the front view and h

7条回答
  •  感情败类
    2020-12-28 13:32

    I was able to get this to work without calling removeFromSuperView

    // pop to top
    [self addSubview:viewToBeMadeForemost positioned:NSWindowAbove relativeTo:nil];
    

提交回复
热议问题