我对 Cocoa 很陌生,我正在尝试设置一个由数组支持的表格视图。我已经将应用程序委托设置为 tableview 的数据源,并实现了NSTableViewDataSource
协议。
当我运行应用程序时,我得到以下日志输出:
2012-06-23 18:25:17.312 HelloWorldDesktop[315:903] 待办事项列表为零
2012-06-23 18:25:17.314 HelloWorldDesktop[315:903] 行数为 0
2012-06-23 18:25 :17.427 HelloWorldDesktop[315:903] 应用程序确实完成启动
我以为当我调用reloadData
tableView 时,它会numberOfRowsInTableView:(NSTableView *)tableView
再次调用来刷新视图,但这似乎并没有发生。我错过了什么?
我的 .h 和 .m 列表如下。
AppDelegate.h
#import <Cocoa/Cocoa.h>
@interface AppDelegate : NSObject <NSApplicationDelegate, NSTableViewDataSource>
@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet NSTableView * toDoListTableView;
@property (assign) NSArray * toDoList;
@end
AppDelegate.m
#import "AppDelegate.h"
@implementation AppDelegate
@synthesize window = _window;
@synthesize toDoList;
@synthesize toDoListTableView;
- (void)dealloc
{
[self.toDoList dealloc];
[super dealloc];
}
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
NSLog(@"App did finish launching");
// Insert code here to initialize your application
// toDoList = [[NSMutableArray alloc] init];
toDoList = [[NSMutableArray alloc] initWithObjects:@"item 1", @"item 2", nil];
[self.toDoListTableView reloadData];
// NSLog(@"table view %@", self.toDoListTableView);
}
//check toDoList initialised before we try and return the size
- (NSInteger) numberOfRowsInTableView:(NSTableView *)tableView {
NSInteger count = 0;
if(self.toDoList){
count = [toDoList count];
} else{
NSLog(@"to do list is nil");
}
NSLog(@"Number of rows is %ld", count);
return count;
}
-(id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
NSLog(@"in objectValueForTable");
id returnVal = nil;
NSString * colId = [tableColumn identifier];
NSString * item = [self.toDoList objectAtIndex:row];
if([colId isEqualToString:@"toDoCol"]){
returnVal = item;
}
return returnVal;
}
@end