@interface CloseWindowAppDelegate : NSObject <NSApplicationDelegate> { NSWindow *window; IBOutlet NSWindow * seconDWindow; NSNib * secondNib;}@property (assign) IBOutlet NSWindow *window;- (IBAction)openSeconDWindow:(ID)sender;- (IBAction)closeSeconDWindow:(ID)sender;@end
#import "CloseWindowAppDelegate.h"@implementation CloseWindowAppDelegate@synthesize window;- (IBAction)openSeconDWindow:(ID)sender { secondNib = [[NSNib alloc] initWithNibnamed:@"SeconDWindow" bundle:nil]; [secondNib instantiateNibWithOwner:self topLevelObjects:nil]; [seconDWindow makeKeyAndOrderFront:nil];}- (IBAction)closeSeconDWindow:(ID)sender { [seconDWindow close]; [secondNib release];}@end总结
以上是内存溢出为你收集整理的objective-c – 如何在Cocoa Mac中以编程方式关闭窗口?全部内容,希望文章能够帮你解决objective-c – 如何在Cocoa Mac中以编程方式关闭窗口?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)