gpt4 book ai didi

objective-c - 单独类中的变量返回 null

转载 作者:搜寻专家 更新时间:2023-10-30 19:50:00 24 4
gpt4 key购买 nike

好吧,我觉得我在这里的问题很啰嗦,很难通过。我将简化我的问题:

  • 我有一个名为 InController 的类。
  • InController 有一个名为 nextPage 的方法,它告诉一个 int 变量 inPageNumber 将一个添加到自身并调用另一个 InController 方法调用了 updateTable
  • updateTable 清除表 inTable 的当前数据,并用与从 inPageNumber 检索的页码相关的数据填充它。
  • 表格 inTable 包含在具有特定打印要求的 NSBox 中。
  • 我将 NSBox 子类化为一个名为 CustomViewPagination 的类来满足这些打印要求,覆盖其分页方法。基本上,当需要新的打印页面时,它会尝试再次打印同一区域,但会调用 nextPage 以使用顺序页面的数据填充表格。

到目前为止和我在一起吗?

我在 CustomViewPagination 中覆盖的分页方法之一,beginPageInRect,默认情况下会为每个打印页面自动调用。因此,我调用了 nextPageInController 方法,以更改当前打印页面的 inTable 数据。

我的问题是当我从我的 CustomViewPagination 类调用 nextPage(这是 InController 中的一个方法)时。它什么都不做,当我调试它时,我发现该方法中所需的所有变量都是零。但是,当我从 InController 内部调用 nextPage 时,它们是正确的值。


文件摘录:

InController.h:

#import <Cocoa/Cocoa.h>
#import "CustomViewPagination.h"

@interface InController : NSObject {
IBOutlet NSWindow *inPreview;
IBOutlet CustomViewPagination *inSheet;
NSArray *iSelectedIn;
NSMutableArray *records;
int inPageNumber;
}
@property (nonatomic, retain) NSArray *iSelectedIn;
@property (nonatomic, retain) NSMutableArray *records;

InController.m:

#import "InController.h"

@implementation InController

@synthesize iSelectedIn, records;

- (IBAction) inNextPage:(id)sender {
inPageNumber = inPageNumber + 1;
NSLog(@"inPageNumber called ok");
[self updateIn];
}


- (IBAction)updateInvoice:(id)sender {
//wipe all current records and refresh empty table
[records removeAllObjects];
[inPreviewTable reloadData];
for (NSArray *s in [[iSelectedIn valueForKey:@"inJobList"] lastObject]) {
NSString *jLT = [s valueForKey:@"inJT"];
NSString *jLH = [s valueForKey:@"inJHo"];
NSString *jLC = [s valueForKey:@"inJC"];
// etc.
// if CustomViewPagination called this, records is nil, so nothing
// is cleared, and there's no *s for iSelectedIn as iSelectedIn
// is found to be nil. If InController called this, it works fine.

CustomViewPagination.h:

#import <Cocoa/Cocoa.h>

@class InController;

@interface CustomViewPagination : NSBox {
InController *inControllerInstance;
}

@end

CustomViewPagination.m:

#import "CustomViewPagination.h"
#import "InController.h"

@implementation CustomViewPagination

- (void) awakeFromNib {
inControllerInstance = [[InController alloc] init];
}

- (void)beginPageInRect:(NSRect)aRect atPlacement:(NSPoint)location {
int pageCounter = [[NSPrintOperation currentOperation] currentPage];
if (pageCounter == 1) {
// Don't respond to 1st page, do nothing.
} else {
[inControllerInstance inNextPage:self];
}
[super beginPageInRect:aRect atPlacement:location];
}

@end

最佳答案

您在 InController(inPreviewinSheet)中使用了 2 个 IBOutlets,但是 InController 是以编程方式创建的CustomViewPagination 的 awakeFromNib

奥特莱斯是如何连接的? (不能来自 IB,因为您正在以编程方式创建 InController 实例)。这可以解释为什么两者都是 nil

关于objective-c - 单独类中的变量返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5817860/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com