我对 mac 应用程序开发非常陌生。所以只是做一些实际的练习。
我想创建一个表格视图来显示我的 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];
}
现在我应该怎么做才能在我的表格视图中显示行?
我必须使用哪种方法?如何??
就像在我们正在使用的 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;
}