- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在让 TableView 显示数据源中的数据时遇到问题。希望有人能在这里指出我正确的方向。
在IB中我有两个 TableView ,我分别将它们的标签设置为1和2。我还有一个 AppController 对象,并将两个表连接到数据源和委托(delegate)的表。
该应用程序的工作方式是用户单击一个按钮,该按钮运行 AppController.m 中的一个方法,允许用户导航到一个目录并选择它,该方法然后获取该目录中的所有文件名,然后过滤 .tif和 .eps 文件。非常基本的东西。这是该方法。
//allows the user to select a folder to read and filter for acceptable image files (eps, tif)
- (IBAction) getFileNames : (id) sender {
//clear out file list
if ([fileList count] > 0) {
[fileList removeAllObjects];
}
// Create the File Open Dialog class.
NSOpenPanel* openDlg = [NSOpenPanel openPanel];
// Enable the selection of files in the dialog.
[openDlg setCanChooseFiles:YES];
// Enable the selection of directories in the dialog.
[openDlg setCanChooseDirectories:YES];
// Display the dialog. If the OK button was pressed,
if ( [openDlg runModalForDirectory:nil file:nil] == NSOKButton ) {
// Get an array containing the full filenames of all
// files and directories selected.
NSArray* files = [openDlg filenames];
// Loop through all the files and process them. (Hopefully most of the time Mark will be selecting just the archive directory on storage server)
for(int i = 0; i < [files count]; i++ ) {
//make string of object path
NSString* objPath = [files objectAtIndex:i];
//determine if object is a directory or file
//create a file manager
NSFileManager* fileManager = [[NSFileManager alloc] init];
//set a bool
BOOL isDir;
//check to see if the object is a folder
if ([fileManager fileExistsAtPath:objPath isDirectory:&isDir] && isDir) {
//set the fileList array
//if it is a directory then read the contents of the directory and display in the file list table
NSError* dirErr;
NSMutableArray *rawFileList = (NSMutableArray *)[[NSFileManager defaultManager] contentsOfDirectoryAtPath:objPath error:&dirErr];
//loop through file list and get the file type, if it is a .eps or .tif then move it to fileList
for(int f=0; f<[rawFileList count]; f++) {
//set an NSString
NSString* thisFile = [rawFileList objectAtIndex:f];
//filter out any file that does not have a .tif or .eps extension
if ([thisFile rangeOfString:@".eps"].location != NSNotFound || [thisFile rangeOfString:@".eps"].location != NSNotFound) {
//add correct files to fileList arrays
[fileList addObject:thisFile];
}
//use core graphics to get the meta data of the file and determine if it is an eps or tif file
/*CGImageSourceRef source = CGImageSourceCreateWithURL( (CFURLRef) URL, NULL);
NSDictionary* metadata = (NSDictionary *)CGImageSourceCopyPropertiesAtIndex(source,0,NULL);*/
}
NSLog(@"%i:::", [fileList count]);
//dump file list into NSTable
} else {
NSLog(@"nope, this is a file");
}
}
}
}
当我记录数组 fileList 中的项目数时,我得到 118。但是,当我在表方法中记录 fileList 时,我得到 0。我希望当应用程序“唤醒”但在发送 fileList 之后,对象应该'它改变了吗?我知道 NSTableViews 在 IB 中连接正确(参见下面的代码),因为我可以在 numberOfRowsInTableView 方法中硬编码一个数字,并在 tableView 方法中硬编码一个字符串,并且它们可以工作。他们只是无法与我的阵列一起使用。
- (int)numberOfRowsInTableView:(NSTableView *)t {
NSLog(@"%i", [fileList count]);
return [fileList count];
}
- (id)tableView:(NSTableView *)t objectValueForTableColumn:(NSTableColumn *)tableColumn row:(int)row {
// return [fileList objectAtIndex:row];
if ([t tag] == 1) {
return [fileList objectAtIndex:row];
} else {
return @"table 2";
}
return 0;
}
我对委托(delegate)的工作方式有点模糊,但从文档来看,这似乎与 AppleScript 的空闲事件类似,其中 Controller 和对象相互通信正在发生的任何更改。我是否必须将文件列表声明为要观看的数组?
最佳答案
NSTableView 对象不会主动寻找底层数据模型的更改,因此如果您更改数据模型(在您的情况下是 fileList 数组),那么您需要告诉 TableView 它已更改。加载文件后,您可以在 TableView 上调用 -(void)reloadData,它应该使用 fileList 中的新数据。
您还可以使用绑定(bind)来连接 TableView ,然后当您更新其绑定(bind)到的属性时,它将收到通知(更多信息 here 和一个很好的教程 here )。
关于cocoa - NSTableView 不显示项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5395382/
非常基本的场景: 我的 Nib 上有一个 NSTableView,有一个指向它的 socket 。我的应用程序委托(delegate)中有以下内容: - (void)applicationDidFin
目前,当我从 NSTableView 中拖出一行时,它是该行中的半透明文本。相反,我想显示代表这一行的半透明图像。 我怎样才能做到这一点? 最佳答案 我建议覆盖 -[NSTableView dragI
我正在使用 NSTableView 来显示我的数据。我想删除默认情况下采用蓝色的选定行的颜色。我可以将其设置为透明颜色吗?可能吗? 编辑: 如何去掉这个蓝色边框?我已将Clear color 设置为表
我正在尝试在 NSTableView 内显示 NSTableView。这是一个类似 iTunes 的专辑/轨道 View 。所以有一个包含 10 张专辑的列表,每个专辑都有一些轨道。我想在外部表格 V
我有一个基于 View 的 NSTableView,其内容绑定(bind)到数组 Controller 。我使用 objectValue.title 绑定(bind)一个特定的文本字段。这工作正常。我
具有单列的基于 View 的 NSTableView。每个“单元格”包含多个 NSTextField、一个 NSImageView 和一个 NSButton,所有这些都绑定(bind)到表格单元格 V
如果我的理解没有错的话,cell-based NSTableView 和 view-based NSTableView 是同一类型的实例。那么,cpu是如何区分cell-based和view-base
我在 10.8 上运行基于 View 的 NSTableView 时遇到问题(目标是 10.7,但我认为这不相关)。 我正在使用 NSTableView,并通过绑定(bind)获取自定义 NSTabl
我有一个有 4 列的 NSTableView。我还为每一行设置了自定义背景颜色。唯一的问题是我有这些丑陋的空白区域,网格线会同时出现在水平轴和垂直轴上。我在 IB 中都取消了检查,但它们仍然出现。如何
我有一个基于 View 的 NSTableView,每一行都必须生成一些需要时间的图像。这些是在后台 NSoperationQueue 上完成的,并在请求图像时启动(通过绑定(bind))。 当一行滚
我的NSTableCellView是子类,并存储指向对象的指针。我想访问该指针,而我唯一获得的信息就是row编号为NSInteger。 如何使用给定的NSTableCellView从我的tableVi
我需要创建一个包含 3 列的 NSTableView,这些列必须适合像这样的空间 20% 60% 20%。我在界面生成器中设置了约束但没有成功。结果总是一样的。显示了 3 列,但大小与 IB 中的相同
我已经尝试了其他帖子中建议选项的多种组合,但我似乎无法使用基于单元格的 NSTableView 填充不可编辑的 NSTextFieldCell 来选择单元格而不是行。 我已经尝试过: [[co
我在区分两个 NSTableView 时遇到问题,需要一些帮助。 我尝试过这些方法: 1. - (void)tableViewSelectionDidChange:(NSNotification *)
我将 NSTableView 绑定(bind)到 NSArrayController。由于某种原因,我根本无法对列进行排序。有些列甚至不显示排序方向箭头。有些确实显示了它,但单击它只是切换箭头方向,它
我在 TableView 中第一行的索引是“0”,这是正确的吗? 如果是,我怎样才能使 TableView 中第一行的索引变为“1”? 这是需要的,因为我的 DataSourse 从“1”开始,我需要
我编写了一个向 NSTableView 添加新行的方法。它添加了新行,但有空,没有文本。代码如下: AppDelegate.h #import @interface AppDelegate : NS
建立委托(delegate)和数据源连接后,我有以下 Controller : #import @interface KextTable : NSObject { @private NSA
我在基于 View 的 NSTableView 中对 NSTableRowView 进行了子类化,以将选择颜色更改为浅蓝色,而不是默认颜色。 不幸的是,当我选择该行时,自定义单元格内的标签和文本字段的
我有一个包含 3 个单元格的 NSTableView。我已经使用以下代码调整了该表格 View 以显示分隔符: [self.tableView setGridColor:[NSColor ligh
我是一名优秀的程序员,十分优秀!