我是mac app开发的新手。所以只是做一些实际的练习。
我想创建一个tableview,显示我的plist文件中的数据 我有一个windowcontroller类和window controller.xib文件 我将NSTableView拖放到.xib文件中 并使用此代码加载plist文件
- (void)windowDidLoad
{
[super windowDidLoad];
NSBundle *bundle = [NSBundle mainBundle];
NSString *path = [bundle pathForResource:@"tenth" ofType:@"plist"];
file = [[NSArray alloc] initWithContentsOfFile:path];
}
现在我该如何在tableview中显示行? 我必须使用哪种方法?如何??
像在IOS开发中我们正在使用- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
NSArray *temp = [file objectAtIndex:indexPath.row];
cell.textLabel.text = [temp objectAtIndex:0];
return cell;
}
答案 0 :(得分:2)
您可以将bindings与NSArrayController
或implement the NSTableViewDataSource
protocol一起使用。