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

iPhone

开发平台:

Objective-C

  1. /*
  2.     File: AddViewController.h
  3. Abstract: 
  4. Displays the details of a new Book object and allows the user the edit them. The majority of functionality is identical
  5. to and inherited from the DetailViewController class. This class implements a different navigation bar and action
  6. methods for saving or cancelling new book creation.
  7.  Version: 1.9
  8. Disclaimer: IMPORTANT:  This Apple software is supplied to you by Apple
  9. Inc. ("Apple") in consideration of your agreement to the following
  10. terms, and your use, installation, modification or redistribution of
  11. this Apple software constitutes acceptance of these terms.  If you do
  12. not agree with these terms, please do not use, install, modify or
  13. redistribute this Apple software.
  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. The Apple Software is provided by Apple on an "AS IS" basis.  APPLE
  30. MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
  31. THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
  32. FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
  33. OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
  34. IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
  35. OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  36. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  37. INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
  38. MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
  39. AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
  40. STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
  41. POSSIBILITY OF SUCH DAMAGE.
  42. Copyright (C) 2008 Apple Inc. All Rights Reserved.
  43. */
  44. #import <UIKit/UIKit.h>
  45. #import "DetailViewController.h"
  46. @interface AddViewController : DetailViewController
  47. - (IBAction)cancel:(id)sender;
  48. - (IBAction)save:(id)sender;
  49. @end