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
。なんで?
前もって感謝します。