0

我正在将 SudzC 用于 iPhone 应用程序。我成功地调用了我的 ASP.Net Web 服务并将所需的数据拉入一个名为 tableData 的 NSMutable 数组中。我有一个应该显示 tableData 内容的 tableView;但是,这是行不通的。我已经在这个问题上寻找了几个小时。我对Objective C世界很陌生,所以我认为这是我的一个小疏忽。我也将我的 TableView 链接到 ViewController(委托/数据源)。

这是我的代码:

#import "ViewController.h"
#import "DocumentServiceJSONService.h"

@interface ViewController ()

@end

@implementation ViewController
NSMutableArray *tableData;


- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

-(void)viewWillAppear:(BOOL) animated {
    tableData = [[NSMutableArray alloc] init];
    DocumentServiceJSONService* service = [[DocumentServiceJSONService alloc] init];
    [service GetAllEMSDocumentsXMLAsString: self action:@selector(handleGetAllEMSDocuments:)];
    [super viewWillAppear:animated];
}


- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

-(void) handleGetAllEMSDocuments:(id) result {

  if ([result isKindOfClass:[NSError class]]) {
        //if an error has occurred, handle it
        return;
    }

    if([result isKindOfClass: [SoapFault class]]) {
        return;
    }

    NSString* xmlString = result;


    CXMLDocument *xmlDoc = [[CXMLDocument alloc] initWithXMLString:xmlString options:0 error:nil];
    NSArray *nodes = NULL;
    nodes = [xmlDoc nodesForXPath:@"//EMSDocuments" error:nil];

    for (CXMLElement *node in nodes) {
        NSMutableDictionary *item = [[NSMutableDictionary alloc] init];
        int counter;

        for (counter = 0; counter < [node childCount]; counter++) {
        [item setObject:[[node childAtIndex:counter] stringValue] forKey:[[node childAtIndex:counter] name]];
        }
    //[item setObject:[[node attributeForName:@"DisplayName"] stringValue] forKey:@"DisplayName"];
        NSString *displayName = [item objectForKey:@"DisplayName"];
        [tableData addObject:displayName];
    }


}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [tableData count];
}

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *simpleTableIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
    }

    cell.textLabel.text = [tableData objectAtIndex:indexPath.row];
    return cell;
}

@end

任何建议表示赞赏。

4

1 回答 1

1

确保您在 .h 中正确设置了委托和数据源:

@interface YourViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>

如果您将 XIB 用于用户界面,则 tableview 将作为数据源和委托连接到文件所有者。 在此处输入图像描述

-- 编辑:为您创建一个插座表视图: 在此处输入图像描述

于 2012-12-28T20:42:32.960 回答