MasterViewController.m
上传用户:hechengdz
上传日期:2020-05-13
资源大小:1591k
文件大小:9k
源码类别:

iPhone

开发平台:

Objective-C

  1. /*
  2.      File: MasterViewController.m
  3.  Abstract: 
  4. Controls the table and navigation between master and detail views.  
  5.   Version: 1.9
  6.  
  7.  Disclaimer: IMPORTANT:  This Apple software is supplied to you by Apple
  8.  Inc. ("Apple") in consideration of your agreement to the following
  9.  terms, and your use, installation, modification or redistribution of
  10.  this Apple software constitutes acceptance of these terms.  If you do
  11.  not agree with these terms, please do not use, install, modify or
  12.  redistribute this Apple software.
  13.  
  14.  In consideration of your agreement to abide by the following terms, and
  15.  subject to these terms, Apple grants you a personal, non-exclusive
  16.  license, under Apple's copyrights in this original Apple software (the
  17.  "Apple Software"), to use, reproduce, modify and redistribute the Apple
  18.  Software, with or without modifications, in source and/or binary forms;
  19.  provided that if you redistribute the Apple Software in its entirety and
  20.  without modifications, you must retain this notice and the following
  21.  text and disclaimers in all such redistributions of the Apple Software.
  22.  Neither the name, trademarks, service marks or logos of Apple Inc. may
  23.  be used to endorse or promote products derived from the Apple Software
  24.  without specific prior written permission from Apple.  Except as
  25.  expressly stated in this notice, no other rights or licenses, express or
  26.  implied, are granted by Apple herein, including but not limited to any
  27.  patent rights that may be infringed by your derivative works or by other
  28.  works in which the Apple Software may be incorporated.
  29.  
  30.  The Apple Software is provided by Apple on an "AS IS" basis.  APPLE
  31.  MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
  32.  THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
  33.  FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
  34.  OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
  35.  
  36.  IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
  37.  OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  38.  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  39.  INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
  40.  MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
  41.  AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
  42.  STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
  43.  POSSIBILITY OF SUCH DAMAGE.
  44.  
  45.  Copyright (C) 2008 Apple Inc. All Rights Reserved.
  46.  
  47.  */
  48. #import "MasterViewController.h"
  49. // Need to import the AppDelegate because it owns the books array and we want access to that property.
  50. #import "AppDelegate.h"
  51. #import "DetailViewController.h"
  52. #import "EditingViewController.h"
  53. #import "AddViewController.h"
  54. #import "Book.h"
  55. // Manage the editing view controller from this class so it can be easily accessed from both the detail and add controllers.
  56. static EditingViewController *__editingViewController = nil;
  57. // Private interface for MasterViewController - internal only methods.
  58. @interface MasterViewController ()
  59. @property (nonatomic, retain) UITableView *tableView;
  60. @property (nonatomic, retain) UINavigationController *addNavigationController;
  61. @property (nonatomic, retain) DetailViewController *detailViewController;
  62. @property (nonatomic, retain) AddViewController *addViewController;
  63. @end
  64. @implementation MasterViewController
  65. @synthesize tableView, addNavigationController, detailViewController, addViewController;
  66. + (EditingViewController *)editingViewController {
  67.     // Instantiate the editing view controller if necessary.
  68.     if (__editingViewController == nil) {
  69.         __editingViewController = [[EditingViewController alloc] initWithNibName:@"EditingView" bundle:nil];
  70.     }
  71.     return __editingViewController;
  72. }
  73. - (void)dealloc {
  74.     // Release allocated resources.
  75.     [tableView release];
  76.     [addNavigationController release];
  77.     [super dealloc];
  78. }
  79. // Set up the user interface.
  80. - (void)viewDidLoad {
  81.     self.navigationItem.leftBarButtonItem = self.editButtonItem;
  82. }
  83. // Update the table before the view displays.
  84. - (void)viewWillAppear:(BOOL)animated {
  85.     [self.tableView reloadData];
  86. }
  87. // Invoked when the user touches Edit.
  88. - (void)setEditing:(BOOL)editing animated:(BOOL)animated {
  89.     // Updates the appearance of the Edit|Done button as necessary.
  90.     [super setEditing:editing animated:animated];
  91.     [self.tableView setEditing:editing animated:YES];
  92.     // Disable the add button while editing.
  93.     if (editing) {
  94.         self.navigationItem.rightBarButtonItem.enabled = NO;
  95.     } else {
  96.         self.navigationItem.rightBarButtonItem.enabled = YES;
  97.     }
  98. }
  99. - (IBAction)addBook:(id)sender {
  100.     AddViewController *controller = self.addViewController;
  101.     controller.book = [[[Book alloc] init] autorelease];
  102.     if (addNavigationController == nil) {
  103.         UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:controller];
  104.         self.addNavigationController = navController;
  105.         [navController release];
  106.     }
  107.     [self.navigationController presentModalViewController:addNavigationController animated:YES];
  108.     [controller setEditing:YES animated:NO];
  109. }
  110. - (DetailViewController *)detailViewController {
  111.     // Instantiate the detail view controller if necessary.
  112.     if (detailViewController == nil) {
  113.         detailViewController = [[DetailViewController alloc] initWithNibName:@"DetailView" bundle:nil];
  114.     }
  115.     return detailViewController;
  116. }
  117. - (AddViewController *)addViewController {
  118.     // Instantiate the add view controller if necessary.
  119.     if (addViewController == nil) {
  120.         addViewController = [[AddViewController alloc] initWithNibName:@"DetailView" bundle:nil];
  121.     }
  122.     return addViewController;
  123. }
  124. #pragma mark Table Delegate and Data Source Methods
  125. // These methods are all part of either the UITableViewDelegate or UITableViewDataSource protocols.
  126. // This table will always only have one section.
  127. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tv {
  128.     return 1;
  129. }
  130. // One row per book, the number of books is the number of rows.
  131. - (NSInteger)tableView:(UITableView *)tv numberOfRowsInSection:(NSInteger)section {
  132.     AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  133.     return appDelegate.books.count;
  134. }
  135. // The accessory type is the image displayed on the far right of each table cell. In order for the delegate method
  136. // tableView:accessoryButtonClickedForRowWithIndexPath: to be called, you must return the "Detail Disclosure Button" type.
  137. - (UITableViewCellAccessoryType)tableView:(UITableView *)tv accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath {
  138.     return UITableViewCellAccessoryDisclosureIndicator;
  139. }
  140. - (UITableViewCell *)tableView:(UITableView *)tv cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  141.     UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@"MyIdentifier"];
  142.     if (cell == nil) {
  143.         // Create a new cell. CGRectZero allows the cell to determine the appropriate size.
  144.         cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"MyIdentifier"] autorelease];
  145.     }
  146.     // Retrieve the book object matching the row from the application delegate's array.
  147.     AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  148.     Book *book = (Book *)[appDelegate.books objectAtIndex:indexPath.row];
  149.     cell.text = book.title;
  150.     return cell;
  151. }
  152. - (NSIndexPath *)tableView:(UITableView *)tv willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  153.     // Inspect the book (method defined above).
  154.     AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  155.     Book *book = [appDelegate.books objectAtIndex:indexPath.row];
  156.     DetailViewController *controller = self.detailViewController;
  157.     // Retrieve the other attributes of the book from the database (if needed).
  158.     [book hydrate];
  159.     // Set the detail controller's inspected item to the currently-selected book.
  160.     controller.book = book;
  161.     // "Push" the detail view on to the navigation controller's stack.
  162.     [self.navigationController pushViewController:controller animated:YES];
  163.     [controller setEditing:NO animated:NO];
  164.     return nil;
  165. }
  166. - (void)tableView:(UITableView *)tv commitEditingStyle:(UITableViewCellEditingStyle)editingStyle 
  167.                 forRowAtIndexPath:(NSIndexPath *)indexPath {
  168.     AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  169.     // If row is deleted, remove it from the list.
  170.     if (editingStyle == UITableViewCellEditingStyleDelete) {
  171.         // Find the book at the deleted row, and remove from application delegate's array.
  172.         Book *book = [appDelegate.books objectAtIndex:indexPath.row];
  173.         [appDelegate removeBook:book];
  174.         // Animate the deletion from the table.
  175.         [self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] 
  176.                 withRowAnimation:UITableViewRowAnimationFade];
  177.     }
  178. }
  179. @end