about page now gets information from service

This commit is contained in:
Senad Uka
2014-09-07 07:18:07 +02:00
parent 90d0d8561b
commit 376072712a
15 changed files with 522 additions and 106 deletions

View File

@@ -10,6 +10,7 @@
#import "FESFilmEntry.h"
#import "FESDataProvider.h"
#import "FESFilmEntryCell.h"
#import "FESFilmDetailsViewController.h"
@interface FESFilmsTableViewController ()
@@ -59,6 +60,7 @@
}
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
@@ -133,15 +135,16 @@
}
*/
/*
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
FESFilmDetailsViewController *destination = [segue destinationViewController];
destination.filmEntry = [filmsArray objectAtIndex:self.tableView.indexPathForSelectedRow.row];
}
*/
@end