objective-c – NSSplitView中的NSOpenGLView

前端之家收集整理的这篇文章主要介绍了objective-c – NSSplitView中的NSOpenGLView前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我在NSSplitView中放置NSOpenglView时,拖动拆分器时会出现问题.
openGLView和SplitView异步调整大小.我在苹果邮件列表线程 http://developer.apple.com/mac/library/samplecode/GLChildWindowDemo/Introduction/Intro.html中找到了一个解决方

我找到了一些带碳调用解决方案.但现在我得到链接错误(仅在发布模式下).

所以我有两个问题 – 是否有任何可可方法解决分裂器 – gl问题?
如果不是 – 如何在发布模式下修复碳链接错误

解决方法

我找到了答案.

正确的方法是在MYWindow中实施thees方法:NSWindow

BOOL needsEnableUpdate;

-(void)disableUpdatesUntilFlush
{
    if(!needsEnableUpdate)
        NSDisableScreenUpdates();
    needsEnableUpdate = YES;
}

-(void)flushWindow
{
    [super flushWindow];
    if(needsEnableUpdate)
    {
        needsEnableUpdate = NO;
        NSEnableScreenUpdates();
    }
}

并在NSSplitterView委托实现

#pragma mark NSSplitView Delegate
-(void)splitViewWillResizeSubviews:(NSNotification *)notification
{
    [window disableUpdatesUntilFlush];
}

我的问题是我试图使用碳调用

DisableScreenUpdates();
EnableScreenUpdates();

而不是可可的:

NSDisableScreenUpdates();
NSEnableScreenUpdates();
原文链接:/cocoa/568455.html

猜你在找的cocoa相关文章