cocoa - 如何显示未归档的自定义 NSView 对象

标签 cocoa nsview

我正在学习 Cocoa 编程,但我不知道如何 归档和取消归档自定义 NSView 子类

我制作了一个显示窗口的玩具应用程序。这个窗口 包含我的自定义BackgroundView类的一个实例(存档于 xib 文件)。单击此BackgroundView中的任意位置将创建并 显示一个蓝色方 block ,其原点是单击点。这个广场是 我的 Square 类的一个实例。所有这些都按我的预期进行。

Square 类实现 NSCoding 协议(protocol)。我已经添加 dataOfType: typeName: error: 和 readfromData: ofType: error: 方法 到 MyDocument 类。据我从日志语句中可以看出, 方 block 正在存档到文件中,并在文件存档时取消存档 已加载。但我无法让方 block 显示在 window 。 Square 类的 drawWithRect: 方法永远不会被调用, 即使我在每个方 block 上调用了 setNeedsDisplay:YES。

代码如下:

Square.h
#import <Cocoa/Cocoa.h>
@interface Square : NSView <NSCoding> {
}
@end

Square.m
#import "Square.h"
@implementation Square

- (id)initWithFrame:(NSRect)frame {
   self = [super initWithFrame:frame];
   return self;
}

- (void)drawRect:(NSRect)rect {
       [[NSColor blueColor] set];
       NSBezierPath *newPath = [NSBezierPath bezierPathWithRect:[self bounds]];
       [newPath fill];
}

-(void)encodeWithCoder:(NSCoder *)coder
{
       [coder encodeRect:[self frame] forKey:@"frame"];
}

-(id)initWithCoder:(NSCoder *)coder
{
       NSRect theRect = [coder decodeRectForKey:@"frame"];
       self = [super initWithFrame:theRect];
       return self;
}
@end
-----
BackgroundView.h
#import <Cocoa/Cocoa.h>
@interface BackgroundView : NSView {
}
@end

BackgroundView.m
#import "BackgroundView.h"
#import "Square.h"
@implementation BackgroundView

- (id)initWithFrame:(NSRect)frame {
   self = [super initWithFrame:frame];
   if (self) {
       // Initialization code here.
   }
   return self;
}

- (void)drawRect:(NSRect)rect {
       for (Square *subview in self.subviews)
               [subview setNeedsDisplay:YES];
}

-(void)mouseDown:(NSEvent *)theEvent {
       NSPoint unsetClick = [theEvent locationInWindow];
       NSPoint theClick = [self convertPoint:unsetClick fromView:nil];
       NSRect theRect;
       theRect.origin = theClick;
       theRect.size.width = 100.00;
       theRect.size.height = 100.00;
       Square *newSquare = [[Square alloc] initWithFrame:theRect];
       [self addSubview:newSquare];
       [newSquare setNeedsDisplay:YES];
}
@end
------
MyDocument.h
#import <Cocoa/Cocoa.h>
@class BackgroundView;

@interface MyDocument : NSDocument
{
       IBOutlet BackgroundView *theBackgroundView;
}
@end

MyDocument.m
#import "MyDocument.h"

@implementation MyDocument

- (id)init
{
   self = [super init];
   return self;
}

- (NSString *)windowNibName
{
   return @"MyDocument";
}

- (void)windowControllerDidLoadNib:(NSWindowController *) aController
{
   [super windowControllerDidLoadNib:aController];
}

- (NSData *)dataOfType:(NSString *)typeName error:(NSError **)outError
{
   return [NSKeyedArchiver
archivedDataWithRootObject:[theBackgroundView subviews]];
   if ( outError != NULL ) {
               *outError = [NSError errorWithDomain:NSOSStatusErrorDomain
code:unimpErr userInfo:NULL];
       }
       return nil;
}

- (BOOL)readFromData:(NSData *)data ofType:(NSString *)typeName
error:(NSError **)outError
{
   [theBackgroundView setSubviews:[NSKeyedUnarchiver
unarchiveObjectWithData:data]];
   [theBackgroundView setNeedsDisplay:YES];
   if ( outError != NULL ) {
               *outError = [NSError errorWithDomain:NSOSStatusErrorDomain
code:unimpErr userInfo:NULL];
       }
   return YES;
}

@end

最佳答案

由于 Square 是 NSView 的子类,并且 NSView 也实现了 NSCoding,因此需要调用 super 的encodeWithCoder: 和 initWithCoder: 实现。

@implementation Square
- (id)initWithFrame:(NSRect)frame
{
    return [super initWithFrame:frame];
}

-(id)initWithCoder:(NSCoder *)coder
{
    if ((self = [super initWithCoder:coder]))
    {
        NSRect theRect = [coder decodeRectForKey:@"frame"];
        self = [super initWithFrame:theRect];
        return self;
    }
}

- (void)encodeWithCoder:(NSCoder *)coder
{
    [super encodeWithCoder:coder];
    [coder encodeRect:[self frame] forKey:@"frame"];
}

- (void)drawRect:(NSRect)rect
{
    [[NSColor blueColor] set];
    [[NSBezierPath bezierPathWithRect:[self bounds]] fill];
}
@end

关于cocoa - 如何显示未归档的自定义 NSView 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/913633/

相关文章:

objective-c - 使用 "setData"将项目添加到 NSPasteboard ?

ios - 在 Mac 上显示 UIView

cocoa - RestoreStateWithCoder 未在 NSView 中触发

cocoa - 捕获一个 View 并输出到另一个 View

cocoa - El Capitan 破坏了我的 NSView 动画

cocoa - 将 subview 带到 mouseDown 的顶部 : AND keep receiving events (for dragging)

javascript - 检测 WebScriptObject 是否为 null

ios - 以正确的格式在控制台中显示 unicode

cocoa - 将 dylib 路径设置为 XCode 构建步骤

xcode - 是否可以在 Xcode 的 "Localizable Strings"文件中本地化 NSMenuItem 的键盘快捷键?