home.h
@property(nonatomic,retain)UIViewController<hellodelegate> *contentController;
Home.m
UINavigationController *cntrl = [[UINavigationController alloc] initWithRootViewController:secondview];
cntrl.view.frame = self.contentInView.bounds;
cntrl.navigationBar.tintColor = [UIColor lightGrayColor];
[self.contentInView addSubview:cntrl.view];
self.contentController =cntrl;
i am getting warning self.contentController=cntrl line.
suggest me. how to solve this issue