//
//
TableViewMasterViewContr
oller.m
//
TableView
//
//
Created by 红雷软件 on 12-5-15.
//
Copyright (c) 2012年 www.soft.com. All rights reserved.
//
#import "TableViewMasterViewContr
oller.h"
#import "TableViewDetailViewContr
oller.h"
@implementation TableViewMasterViewContr
oller
@synthesize detailViewController = _detailViewController;
@synthesize movieTitles;
@synthesize years;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
}
- (void)didReceiveMemoryWarning
{
}
#pragma mark - View lifecycle
- (void)viewDidLoad
{
// Do any additional setup after loading the view, typically from a nib.
}
- (void)viewDidUnload
{
}
- (void)viewWillAppear:(BOOL)animated
{
}
- (void)viewDidAppear:(BOOL)animated
{
}
- (void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
}
- (void)viewDidDisappear:(BOOL)animated
{
[super viewDidDisappear:animated];
}
- (BOOL)shouldAutorotateToInterf
aceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
}
// Customize the number of sections in the table view.
- (NSInteger)numberOfSectionsInTableV
iew:(UITableView *)tableView
{
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
}
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
}
@end