我正在尝试使用 NSArray 填充 NSTableView。我有一个视图控制器,我已将其设置为我的数据源,但每次运行程序时,我都会收到此错误:Must implement numberOfRowsInTableView: and tableView:objectValueForTableColumn:row:
,我已经实现了这两个。这是我的标题:
#import <Cocoa/Cocoa.h>
@interface ChatViewController : NSViewController <NSTableViewDataSource>
- (NSInteger)numberOfRowsInTableView:(NSTableView *)aTableView;
- (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex;
@end
这是我的实现文件:
#import "ChatViewController.h"
#import "Socket.h"
@interface ChatViewController ()
@property (strong) IBOutlet NSTableView *people;
@property (strong) IBOutlet NSTextField *message;
@property (strong) IBOutlet NSButton *send;
@property (strong) Socket *sock;
@property (strong, nonatomic) NSString *recievedText;
@property (strong, nonatomic) NSArray *tableData;
- (void)updateUI;
@end
@implementation ChatViewController
@synthesize sock;
@synthesize recievedText;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
[self.people setDataSource:self];
sock = [[Socket alloc] init];
[sock connectToServerWithIP:@"127.0.0.1" andPort:5001];
[self updateUI];
}
return self;
}
- (void)updateUI
{
[sock sendMessage:@"getPeople"];
recievedText = [NSString stringWithString:[sock recieveMessage]];
self.tableData = [recievedText componentsSeparatedByString:@";"];
NSLog(@"%@", self.tableData);
[self.people reloadData];
NSLog(@"%@", self.people);
}
- (NSInteger)numberOfRowsInTableView:(NSTableView *)aTableView
{
return [self.tableData count];
}
- (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex
{
return [self.tableData objectAtIndex:rowIndex];
}
@end
Socket
是我创建的用于打开和关闭服务器套接字的类,它功能齐全。该tableData
数组像普通数组一样填充。
谢谢你的帮助。