English 中文(简体)
不关闭的模量窗口
原标题:modal window not closing

我正在经营一个特制的NSWindow管理员作为模式窗口。

首先,我把它展示成这样:

ProgressWindow *pWin = [[ProgressWindow alloc] initWithWindowNibName:@"ProgressWindow" andXmlContent:nil];        
[NSApp runModalForWindow:[pWin window]];

然后我想在进步窗口的NSWindow主计长内部把它从中解开。为了这样做,我设置在窗口Did Load 函数的代码(仅测试)下面:

[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:2]];
[self testMethod];

如预期的那样,它称为2秒后测试方法。 方法应该关闭模式窗口, 但我似乎找不到方法。 我尝试了 < code> [NSApp stopModal] , < code> [NSApp 中止模式] , < code>[self close] , 把它制作成工作表, 并调用 [self. windowordOut:nil]; [NSApp endSheet:self. window]; 但似乎没有起作用。 要么什么事都没有发生, 要么窗口在另一个地点重新打开。 我不知道为什么会发生这种情况, 初始化代码只被调用一次 。

有人知道怎么关吗?

问题回答

我相信你使用 runLooop 的方式不正确。 runLooop 是一个循环, 管理 App 内 GUI 部件的显示和互动, 如果您停止主 runLooop 您 App 将停止更新 。

由于您正在使用 OuntilDate, 您正在停止处理 GUI 更新, 因为主 RunLoop 停止了 。

要获取您需要的功能, 您可以在运行循环中使用一个附加时间器, 或者使用一个单独的NSTimer, 使用参数选择器来启动断点Modal 消息 。





相关问题
Asynchronous request to the server from background thread

I ve got the problem when I tried to do asynchronous requests to server from background thread. I ve never got results of those requests. Simple example which shows the problem: @protocol ...

objective-c: Calling a void function from another controller

i have a void, like -(void) doSomething in a specific controller. i can call it in this controller via [self doSomething], but i don t know how to call this void from another .m file. I want to call ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

NSUndoManager and runModalForWindow:

I have a simple Core Data app which displays a list of entities in the main window. To create or add new entities, I use a second modal window with a separate managed object context so changes can be ...

NSMutableArray values becoming "invalid"

I m trying to show a database information in a tableview and then the detailed information in a view my problem is as follow: I created a NSMutableArray: NSMutableArray *myArray = [[NSMutableArray ...

iPhone numberpad with decimal point

I am writing an iPhone application which requires the user to enter several values that may contain a decimal point (currency values, percentages etc.). The number of decimal places in the values ...

热门标签