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

iPhone

开发平台:

Objective-C

  1. /*
  2.     File: AppDelegate.h
  3. Abstract: 
  4. This class is the application delegate. That means it receives (and should handle) messages 
  5. from the application informing it of launch and termination state. The application delegate 
  6. initiates the user interface setup and acts as a central coordinator for the database backing 
  7. the application.
  8.  Version: 1.9
  9. Disclaimer: IMPORTANT:  This Apple software is supplied to you by Apple
  10. Inc. ("Apple") in consideration of your agreement to the following
  11. terms, and your use, installation, modification or redistribution of
  12. this Apple software constitutes acceptance of these terms.  If you do
  13. not agree with these terms, please do not use, install, modify or
  14. redistribute this Apple software.
  15. In consideration of your agreement to abide by the following terms, and
  16. subject to these terms, Apple grants you a personal, non-exclusive
  17. license, under Apple's copyrights in this original Apple software (the
  18. "Apple Software"), to use, reproduce, modify and redistribute the Apple
  19. Software, with or without modifications, in source and/or binary forms;
  20. provided that if you redistribute the Apple Software in its entirety and
  21. without modifications, you must retain this notice and the following
  22. text and disclaimers in all such redistributions of the Apple Software.
  23. Neither the name, trademarks, service marks or logos of Apple Inc. may
  24. be used to endorse or promote products derived from the Apple Software
  25. without specific prior written permission from Apple.  Except as
  26. expressly stated in this notice, no other rights or licenses, express or
  27. implied, are granted by Apple herein, including but not limited to any
  28. patent rights that may be infringed by your derivative works or by other
  29. works in which the Apple Software may be incorporated.
  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. IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
  36. OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  37. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  38. INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
  39. MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
  40. AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
  41. STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
  42. POSSIBILITY OF SUCH DAMAGE.
  43. Copyright (C) 2008 Apple Inc. All Rights Reserved.
  44. */
  45. #import <UIKit/UIKit.h>
  46. // This includes the header for the SQLite library.
  47. #import <sqlite3.h>
  48. // Inform the compiler that the following classes are defined in the project:
  49. @class Book, MasterViewController, DetailViewController, AddViewController, EditingViewController;
  50. @interface AppDelegate : NSObject {
  51.     IBOutlet UIWindow *window;
  52.     IBOutlet UINavigationController *navigationController;
  53.     NSMutableArray *books;
  54.     // Opaque reference to the SQLite database.
  55.     sqlite3 *database;
  56. }
  57. @property (nonatomic, retain) UIWindow *window;
  58. @property (nonatomic, retain) UINavigationController *navigationController;
  59. // Makes the main array of book objects available to other objects in the application.
  60. @property (nonatomic, retain) NSMutableArray *books;
  61. // Removes a book from the array of books, and also deletes it from the database. There is no undo.
  62. - (IBAction)removeBook:(Book *)book;
  63. // Creates a new book object with default data. 
  64. - (void)addBook:(Book *)book;
  65. @end