2

FetchVenuesViewの前にVenuesIDControllerVenuesIDControllerの2番目のタブバーアイテムtabbarcontrollerです。 FetchVenuesViewタブバーの一部ではありません。

タブバーの最初の項目は、tableview問題なくデリゲートを呼び出すことができる項目です。ただし、デリゲートを呼び出そうとVenuesIDControllerすると、ログに常にnullとして表示されます。

私はここで何をしますか?ストーリーボードでデリゲートを接続しますか?どのように?

私はFetchVenuesViewController.h

#import "VenueTableViewController.h" 
#import "VenueIDController.h"

@interface FetchVenuesViewController : UIViewController< VenueTableViewControllerDelegate, VenueIDControllerDelegate>{
    NSDictionary* venueJSON;
    NSDictionary* idJSON;

};

@property (strong) NSDictionary* idJSON;


- (void)VenueFetch;

- (void)IDFetch;


@end

FetchVenuesViewController.m

@synthesize idJSON;

- (void)IDFetch {

    //request some webservice 


    NSData *data = [NSURLConnection sendSynchronousRequest:request
                                         returningResponse:&response
                                                 error:&error];
    //save the response



    if (data) {

        id IDJSON = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&error];
        if (!IDJSON) {
           //handle error

        }
        else {


        //do something

        }



    } else {
        // fetch failed

    }

    activityIndicator.hidden = NO;
}

-(NSDictionary *)getID{
    [self IDfetch];
    NSLog(@"json%@",idJSON);
    return idJSON;
}

VenueIDController.h

@protocol VenueIDControllerDelegate;

@interface VenueIDController : UIViewController{

}


@property (assign) id <VenueIDControllerDelegate> delegate;
-(IBAction)getIDData:(id)sender;

@end

@protocol VenueIDControllerDelegate <NSObject>
-(NSDictionary *)getID;
@end

とでVenueIDController.m

@interface VenueIDController (){
        NSMutableArray* IDData;
        UIImage* IDBarcode;
    }
    -(void) displayIDData:(NSDictionary*)data;
    @end

    @implementation VenueIDController
    @synthesize delegate;

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization

        VenueIDController *vid = [[VenueIDController alloc] init]; 
        vid.delegate = self;
        NSLog(@"%@",vid);


    }
    return self;
}


    -(void) displayIDData:(NSDictionary*)data{

        [delegate getID];


        NSDictionary* idJSON = data;


    }
4

1 に答える 1

0

あなたのinitオンVenueIDControllerは間違っているようです。すでにinitになっているので、別のinitを作成する必要はありません。代わりにself.delegate = self。そこvidに作成しているオブジェクトは保持されません。

于 2012-10-21T15:57:46.677 に答える