Hi I am trying to pass an indexvalue from my parent view to my subview like this //main.m
SubViewController *subViewController = [[SubViewController alloc] init];
subViewController.parentViewSelectedIndexPath = indexPath;
However when I try to check to see if the value have been passed over to the subview like so
//sub.m
- (void)viewDidLoad
{
//
NSLog(@"%@", parentViewSelectedIndexPath);
//
decliration in side sub.h
//
@interface VehicleResultViewController : UITableViewController {
//
NSIndexPath *parentViewSelectedIndexPath;
//
@property (nonatomic, retain) NSIndexPath *parentViewSelectedIndexPath;
//
@end
//Answer
subview loads before it gets the indexpath being passed to is.. so I had to use a method that is executed later i.s.(didselectrowatindexpath) this printed out the correct indexpath that was sent to it from the main view.
it prints (null) to the console.. am I doing something wrong?
parentViewSelectedIndexPath, but then synthesized your property as@synthesize parentViewSelectedIndexPath=_parentViewSelectedIndexPath, then it would make perfect sense that accessing the ivar in-viewDidLoadisn't giving you the value of the property. – Kevin Ballard Oct 3 '11 at 20:15NSLog(@"%@", indexPath);after you setparentViewSelectedIndexPath. What happens? – PengOne Oct 3 '11 at 20:16self.view(which I hope it doesn't) then-viewDidLoadwould fire before you've had a chance to set the property. – Kevin Ballard Oct 3 '11 at 20:16