-1

sudzc を使用するクラスがあります。すべて正常に動作し、NSLog を使用して Web サービスのデータを監視できますが、配列を使用してその配列を別の場所で使用する場合、プロパティは null です。テーブル ビューに Web サービスのデータを入力したいのですが、できません。

これは私のクラスです

       //
//  RootViewController.m
//  StratargetMovil
//
//  Created by Giovanni Cortés on 30/03/12.
//  Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//

#import "RootViewController.h"
#import "Page2.h"

@interface RootViewController ()
@end

@implementation RootViewController
@synthesize myData = _myData;
@synthesize empresaID = _empresaID;
@synthesize datos = _datos;
@synthesize idUnidadNegocio = _idUnidadNegocio;
@synthesize idArray = _idArray;

-(NSString *)empresaID
{
    _empresaID = @"fce";
    return _empresaID;
}


- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
        // Do any additional setup after loading the view from its nib.

    }
    return self;
}

- (void)viewDidLoad
{    
    // I want to fill the table view but dont work
    EWSEmpresaWebServiceSvc *service = [[EWSEmpresaWebServiceSvc alloc] init];
    [service ConsultarUnidadesOrganizacionalesPorEmpresa:self EmpresaId:self.empresaID];
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
    self.datos = nil;
    self.myData = nil;
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return YES;
}



// Lo de la tabla
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [self.myData count];
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *SimpleTableIdentifier = @"SimpleTableIdentifier";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SimpleTableIdentifier];

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

    }

    NSUInteger row = [indexPath row];
    cell.textLabel.text = [self.myData objectAtIndex:row];
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

    return cell;

}


-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Muestra la vista 2 cuando se selecciona una fila
    [[tableView cellForRowAtIndexPath:indexPath] setSelected:NO animated:YES];

    self.idUnidadNegocio = [self.idArray objectAtIndex:indexPath.row];

    Page2 *nextNavigator = [[Page2 alloc] init];

    [[self navigationController] pushViewController:nextNavigator animated:YES];
    [nextNavigator release];


}

// -------------------------------------------------
// Consultar unidades organizaciones por empresa
- (void) ConsultarUnidadesOrganizacionalesPorEmpresaHandler: (id) value {

    // Handle errors
    if([value isKindOfClass:[NSError class]]) {
        NSLog(@"%@", value);
        return;
    }

    // Handle faults
    if([value isKindOfClass:[SoapFault class]]) {
        NSLog(@"%@", value);
        return;
    }               


    // Do something with the NSMutableArray* result
    NSMutableArray *result = (NSMutableArray*)value;
    NSMutableArray *unidadOrganizacional = [[NSMutableArray alloc] init];
    self.myData = [[[NSMutableArray array] init] autorelease];

    for (int i = 0; i < [result count]; i++)
    {
        EWSUnidadNegocio *empresa = [[EWSUnidadNegocio alloc] init];
        empresa = [result objectAtIndex:i];
        [unidadOrganizacional addObject:[empresa Descripcion]];

    }

    self.myData = unidadOrganizacional;

}
 -(void)onload:(id)value
{
    // Handle errors
    if([value isKindOfClass:[NSError class]]) {
        NSLog(@"%@", value);
        return;
    }

    // Handle faults
    if([value isKindOfClass:[SoapFault class]]) {
        NSLog(@"%@", value);
        return;
    }               


    // Do something with the NSMutableArray* result
    NSMutableArray *result = (NSMutableArray*)value;
    NSMutableArray *unidadOrganizacional = [[NSMutableArray alloc] init];
    self.myData = [[[NSMutableArray array] init] autorelease];

    for (int i = 0; i < [result count]; i++)
    {
        EWSUnidadNegocio *empresa = [[EWSUnidadNegocio alloc] init];
        empresa = [result objectAtIndex:i];
        NSLog(@"%ld -- %@", [empresa Id], [empresa Descripcion]); // With this I can watch the data in the console
        [unidadOrganizacional addObject:[empresa Descripcion]];

    }

    self.myData = unidadOrganizacional; // self.myData in another place is null
}


}
@end

私のデータは

@property (非アトミック、保持) NSMutableArray *myData;

ありがとう

4

2 に答える 2

0

オートリリースだと思いますmyData。配列を割り当てて初期化することはできますが、myData自動/解放することはできません。myData(メソッド内の割り当てで autorelease を削除しConsultarUnidadesOrganizacionalesPorEmpresaHandlerます)

myData(およびその他の) プロパティを解放するための dealloc メソッドを追加することを忘れないでください。

于 2012-04-13T21:47:57.573 に答える
0

まず、これはあなたのために何もしていません:

self.myData = [[[NSMutableArray array] init] autorelease];

...

self.myData = unidadOrganizacional;

myData を割り当ててから、すぐに再割り当てしています。

最初の初期化をスキップして、次のようにします。

self.myData = [unidadOrganizacional mutableCopy];

ある時点で unidadOrganizacional 配列へのポインタを失っていると思われます。それが myData に対して null を取得している理由です。

個人的には、viewDidLoad 呼び出しで myData を初期化してから、オブジェクトを myData に直接追加します。

- (void)viewDidLoad
{    

    self.myData = [[NSMutableArray alloc] init];

    // I want to fill the table view but dont work
    EWSEmpresaWebServiceSvc *service = [[EWSEmpresaWebServiceSvc alloc] init];
    [service ConsultarUnidadesOrganizacionalesPorEmpresa:self EmpresaId:self.empresaID];
}

その後:

- (void) ConsultarUnidadesOrganizacionalesPorEmpresaHandler: (id) value {

    // Handle errors
    if([value isKindOfClass:[NSError class]]) {
        NSLog(@"%@", value);
        return;
    }

    // Handle faults
    if([value isKindOfClass:[SoapFault class]]) {
        NSLog(@"%@", value);
        return;
    }               


    // Do something with the NSMutableArray* result
    NSMutableArray *result = (NSMutableArray*)value;

    for (int i = 0; i < [result count]; i++)
    {
        EWSUnidadNegocio *empresa = [[EWSUnidadNegocio alloc] init];
        empresa = [result objectAtIndex:i];
        [self.myData addObject:[empresa Descripcion]];
    }
}

-(void)onload:(id)value
{
    // Handle errors
    if([value isKindOfClass:[NSError class]]) {
        NSLog(@"%@", value);
        return;
    }

    // Handle faults
    if([value isKindOfClass:[SoapFault class]]) {
        NSLog(@"%@", value);
        return;
    }               


    // Do something with the NSMutableArray* result
    NSMutableArray *result = (NSMutableArray*)value;

    for (int i = 0; i < [result count]; i++)
    {
        EWSUnidadNegocio *empresa = [[EWSUnidadNegocio alloc] init];
        empresa = [result objectAtIndex:i];
        NSLog(@"%ld -- %@", [empresa Id], [empresa Descripcion]); // With this I can watch the data in the console
        [self.myData addObject:[empresa Descripcion]];

    }
}

呼び出しの前に myData をクリアしたい場合がありますが、それとConsultarUnidadesOrganizacionalesPorEmpresa実際の違いが何であるかはよくわかりませonloadん。それらは互いに複製されているように見えます。

幸運を!

于 2012-04-13T21:57:02.547 に答える