NSTextField不会显示

时间:2013-05-23 18:03:01

标签: objective-c osx-mountain-lion nstextfield

我尝试过很多我在这里找到的答案。我必须做一些愚蠢的事情并且可以使用帮助。

  1. 在.h:@property (strong) IBOutlet NSTextField *title;

  2. in .m:

    title = [[NSTextField alloc] init];
    [title setStringValue:@"test"];
    NSLog(@"title is %@", [title stringValue]);
    
  3. 在IB中,标题字段的设置如下:

  4. enter image description here

    它的类是NSTextField。

    我可以在tableview中显示数据,但我无法将其链接到文本字段。谢谢你的帮助...

    我记录标题字段并显示内容:

      title is test
    

1 个答案:

答案 0 :(得分:0)

在看了更多关于SO之后,我想出了这个,这就像我需要它一样:

NSInteger row =  [[notification object] selectedRow];
    currentItem = [itemArray objectAtIndex:row];

    [self.itemTitle setStringValue:
     [NSString stringWithFormat: @"%@", [currentItem valueForKey:@"title"]]];

谢谢