我的FetchVenuesView
在VenuesIDController
之前。 VenuesIDController
是tabbarcontroller
中的第二个标签栏项。 FetchVenuesView
不属于标签栏。
标签栏中的第一项是tableview
,在其中我可以毫无问题地 call 代表。
但是,当我尝试用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;
}
最佳答案
您在init
上的VenueIDController
出现错误。您已经在一个init中,因此您无需创建另一个init。相反,您应该具有self.delegate = self
。您正在创建的vid
对象将不会保留。