1

VenueIDControllerデリゲート/プロトコルを実装してJSONを渡そうとしています。ただし、機能していないようです。足りないものを教えてください。fetchメソッドにログを入れて、呼び出されているかどうかを確認しましたが、ログに記録されないため、呼び出されていないので、助けてください。

私は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;


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

    [delegate getID];


    NSDictionary* idJSON = data;


}
4

1 に答える 1

2

これは間違っているようです:

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

    [delegate getID];


    NSDictionary* idJSON = data;


}

デリゲート メソッドを呼び出して、その結果を破棄しています。

于 2012-10-21T00:00:31.363 に答える