非法的DataSource,但一切都很好

时间:2012-12-10 22:39:18

标签: cocoa syntax-error nstableview

获得:

*** Illegal NSTableView data source (<NSApplication: 0x101602bc0>).  Must implement numberOfRowsInTableView: and tableView:objectValueForTableColumn:row:

代码 .h

    //
//  AppDelegate.h
//  MySQL
//
//  Created by - on 10/12/12.
//  Copyright (c) 2012 - Software. All rights reserved.
//

#import <Cocoa/Cocoa.h>

@interface AppDelegate : NSObject <NSApplicationDelegate> {

    NSMutableArray *tabelle_totali;
    IBOutlet NSTableView *tabella_tabelle_totali;
    IBOutlet NSTableView *tabella_contenitore;

}

@property (assign) IBOutlet NSWindow *window;

//Metodo per scaricare dati
- (void) download_tabelle ;
//Manipolazione tabelle ricevute
- (void)tabelle_ricevute:(NSData *)tabelle;
//Refresh tabella
- (IBAction)refresh_tablelle:(id)sender;
//Refresh tabelle
- (int)numberOfRowsInTableView:(NSTableView *)aTableView;
- (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex;
@end

代码 .m

//
//  AppDelegate.m
//  MySQL
//
//  Created by - on 10/12/12.
//  Copyright (c) 2012 Alberto Bellini Software. All rights reserved.
//

#import "AppDelegate.h"

@implementation AppDelegate

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
    [self download_tabelle];
    [tabella_tabelle_totali reloadData];
}

- (void) download_tabelle  {
    NSMutableString *databaseURL = [[NSMutableString alloc] initWithString:@"http://*********************.php"];
    //inizializzazione richiesta url
    NSURL *url = [NSURL URLWithString:databaseURL];
    //Richiesta asincrona per richiedere dati
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    NSOperationQueue *queue = [[NSOperationQueue alloc] init];
    [NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *tabelle, NSError *error)
     {
         [self tabelle_ricevute:tabelle];
     }
     ];

}

- (void)tabelle_ricevute:(NSData *)tabelle
{

    NSString *response = [[NSString alloc] initWithData:tabelle encoding:NSUTF8StringEncoding];
    NSArray *tmpResp = [response componentsSeparatedByString:@"####"]; //This array splits the response string
    NSLog(@"%@",response);
    //Aggiungo le mie tabelle al mio array
    [tabelle_totali addObjectsFromArray:tmpResp];

}

- (IBAction)refresh_tablelle:(id)sender {

    //Cancello vecchi dati
    while([[tabella_tabelle_totali tableColumns] count] > 0) {
        [tabella_tabelle_totali removeTableColumn:[[tabella_tabelle_totali tableColumns] lastObject]];
    }

    NSTableColumn *column = [[NSTableColumn alloc] initWithIdentifier:@"1"];
    [column setWidth:143];
    [[column headerCell] setStringValue:@"*******"];
    [tabella_tabelle_totali addTableColumn:column];
    [tabella_tabelle_totali reloadData];
}


-(NSInteger)numberOfRowsInTableView:(NSTableView *)aTableView {
    return 5;
}
-(id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {

    return @"hello world";
}










@end

很抱歉很多代码是用意大利语编写的,但问题是“国际”..为什么我会收到此错误?表dataSource也连接到File的所有者和出口。 在运行应用程序而不是显示带有5个“hello world”的5行时,显然没有任何反应..帮助

2 个答案:

答案 0 :(得分:3)

问题可能出在包含表视图的xib文件中。您是否已将表视图的委托设置为文件所有者(可能是NSApplication的实例),还是已将其委托设置为应用程序委托?它需要设置为您的应用程序委托。

如果您尚未设置表示应用程序委托的对象(在UI布局左侧的边距中可见),则应该这样做,并将表视图的delgate连接连接到该对象。

答案 1 :(得分:0)

使用Swift时,问题可能是数据源类没有明确实现NSTableViewDataSource协议。特别是,通过Swift 3中的API重命名,它似乎是导致Swift 3语法tableView(_:objectValueFor:row:)映射到Objective-C选择器tableView:objectValueForTableColumn:row:的协议。

我在实现表视图数据源时发现了这一点;虽然我在Swift中实现了正确的方法,但我在运行时得到了*** Illegal NSTableView data source消息。直到我意识到我忘记在我的班级声明中包含协议一致性时,我才感到困惑。