我正在尝试设置一个NSCollectionView
(我过去已经成功地做到了这一点,但由于某种原因这次失败了)。
我有一个名为“TestModel”的模型类,它有一个NSString
只返回一个字符串的属性(现在仅用于测试目的)。然后我在我的主应用程序委托类中有一个NSMutableArray
属性声明,并向这个数组添加TestModel
对象的实例。
然后我有一个数组控制器,它的内容数组绑定了应用程序委托的NSMutableArray
. 我可以确认到目前为止一切正常;NSLogging:
[[[arrayController arrangedObjects] objectAtIndex:0] teststring]
工作正常。
然后,我为集合视图设置(itemPrototype 和内容)以及集合视图项(视图)设置了所有适当的绑定。然后,我在绑定到 Collection View 的集合项视图中有一个文本字段Item.representedObject.teststring
。但是,当我启动应用程序时,集合视图中没有显示任何内容,只是一个空白的白色屏幕。我错过了什么?
更新:这是我使用的代码(由 wil Shipley 要求):
// App delegate class
@interface AppController : NSObject {
NSMutableArray *objectArray;
}
@property (readwrite, retain) NSMutableArray *objectArray;
@end
@implementation AppController
@synthesize objectArray;
- (id)init
{
if (self = [super init]) {
objectArray = [[NSMutableArray alloc] init];
}
return self;
}
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
TestModel *test = [[[TestModel alloc] initWithString:@"somerandomstring"] autorelease];
if (test) [objectArray addObject:test];
}
@end
// The model class (TestModel)
@interface TestModel : NSObject {
NSString *teststring;
}
@property (readwrite, retain) NSString *teststring;
- (id)initWithString:(NSString*)customString;
@end
@implementation TestModel
@synthesize teststring;
- (id)initWithString:(NSString*)customString
{
[self setTeststring:customString];
}
- (void)dealloc
{
[teststring release];
}
@end
然后就像我说的,Array Controller 的 content 数组绑定到这个“objectArray”,NSCollectionView 的 Content 绑定到 Array Controller.arrangedObjects。我可以通过 NSLogging [arrayController mappedObjects] 验证 Array Controller 中是否包含对象,并且它返回正确的对象。只是在 NSCollectionView 中没有显示任何内容。
更新 2:如果我记录 [collectionView 内容],我什么也得不到:
2009-10-21 08:02:42.385 CollViewTest[743:a0f] (
)
问题可能就在那里。
更新 3:这里要求的是 Xcode 项目:
http://www.mediafire.com/?mjgdzgjjfzw
它是一个菜单栏应用程序,所以它没有窗口。当您构建并运行应用程序时,您会看到一个显示“测试”的菜单栏项,这将打开包含 NSCollectionView 的视图。
谢谢