2

我尝试NSSearchField在用户按下 enter 键后将文本添加到 NSTableView NSSearchField。我为 NSTableView 和NSSearchField.

SearchFieldController我在(委托)中使用此代码:

-(void)controlTextDidEndEditing:(NSNotification *)notification
{
      // See if it was due to a return
      if ( [[[notification userInfo] objectForKey:@"NSTextMovement"] intValue] == NSReturnTextMovement )
      {
         NSArray *myarr = [NSArray arrayWithObjects:@"123" ,@"456" , @"789" , nil];

        [(TableViewController *) MySelf addObjects:myarr];
        NSLog(@"Return was pressed!");
     }
}

SearchFieldController.h:

#import <Foundation/Foundation.h>
#import "TableViewController.h"


@interface SearchFieldController : NSSearchField{
@public
    IBOutlet NSSearchField *searchField;
    BOOL isEnterKey;
    TableViewController *MySelf;
}

//@property (assign) BOOL isEnterKey;


@end

TableViewController.m (Delegate) 中的这个函数用于添加对象:

- (void)addObjects:(NSArray *)Objects{
    for (NSString *file in Objects) {
        Item *item = [[Item alloc] init];
        item.name = file;
        [list addObject:item];
        [tableView reloadData];
        [item release];
    }
}

但是当我测试应用程序时,什么也没有发生!什么都没有添加到我的UITableView,我没有收到任何错误!知道我做错了什么吗?

4

1 回答 1

1

在其中添加对象后,您忘记保留数组。

- (void)addObjects:(NSArray *)Objects{
    for (NSString *file in Objects) {
        Item *item = [[Item alloc] init];
        item.name = file;
        [list addObject:item];
        [list retain];
        [tableView reloadData];
        [item release];
    }
}
于 2013-02-22T06:40:41.643 回答