在我的 AppDelegate 的界面中,我有以下属性声明:
@property (strong) NSArray *fileNamesInCurrentDirectory;
然后,在实现中:
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
[self setFileNamesInCurrentDirectory:[NSArray arrayWithObject:@"hello"]];
}
- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView {
return [self.fileNamesInCurrentDirectory count];
}
当numberOfRowsInTableView
被调用时,fileNamesInCurrentDirectory
是nil
。为什么?
提前致谢。