如何将数据从UINavigationController传递到根UITableViewController? 我已经实现了ECSlidingViewController(https://github.com/edgecase/ECSlidingViewController)。用户选择菜单中的一个单元格,这些单元格对应于我想要显示位于UINavigationController顶部的tableView上的信息的不同URL。 (你知道你将我的UINavigationController拖到故事板上的默认组合)。我能够从滑动菜单中获取数据到我的navigationController现在我想在我的tableview上传递相同的信息吗?
在我的菜单中,我有:
UINavigationController *newTopViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"NavigationTop"];
newTopViewController = [(NavigationTopViewController*)newTopViewController initWithCinema:self.myCinema];
在UINaviationController中:
- (id)initWithCinema:(Cinema *)cinema {
self = [super init];
if(self) {
_myCinema = [[Cinema alloc] init];
_myCinema = cinema;
}
return self;
}
- (void) viewDidLoad {
[super viewDidLoad];
// this log works I get the info to here.
NSLog(@"url(navigation):%@", self.myCinema.cinemaURL);
//MoviesTableViewController *moviesTableViewController = [[MoviesTableViewController alloc] initWithCinema:self.myCinema];
//UITableViewController *newTopViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"MoviesTable"];
//NavigationTopViewController *newTopViewController = [[NavigationTopViewController alloc] initWithCinema:self.myCinema];
//newTopViewController = [(MoviesTableViewController *)newTopViewController initWithCinema:self.myCinema];
//[self performSegueWithIdentifier:nil sender:self.myCinema];
[self prepareForSegue:nil sender:self.myCinema.cinemaURL];
}
在我的UITableView中:
- (void)setCinema:(Cinema *)cinema {
// works here too
NSLog(@"Table(setCinema):%@", cinema.cinemaURL);
self.myCinema = [[Cinema alloc] init];
if(!cinema) {
cinema.cityIndex = kAstanaIndex;
cinema.name = kKeruen;
cinema.nameForText = kKeruenText;
cinema.cinemaURL = kKeruenURL;
cinema.cinemaURLTomorrow = kKeruenURLtomorrow;
}
self.myCinema = cinema;
// works here too!!!
NSLog(@"Table(myCinema):%@", self.myCinema.cinemaURL);
}
然而它在viewDidLoad中消失了:
- (void)viewDidLoad
{
[super viewDidLoad];
// set delegate to self
self.tableView.delegate = self;
// set loading theater's url
// does not work here: I GET NULL !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
NSLog(@"url(moviesTable):%@", self.myCinema.cinemaURL);
_model = [[MovieModel alloc] initWithURL:self.myCinema.cinemaURL];
}
至少对我来说,我尝试过的所有方法(在导航中都有评论......)都没有。请给我任何建议。先感谢您。
答案 0 :(得分:0)
UINavigationController
不包含任何数据,而是一堆视图控制器。我建议您查看免费的Sensible TableView等框架。框架将自动处理详细视图生成并在它们之间传递数据。在我的项目中节省了大量的开发时间。