ItemNotesViewController.h 468 B

12345678910111213141516
  1. //
  2. // ItemNotesViewController.h
  3. // iSales-NPD
  4. //
  5. // Created by Ray on 2/16/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ItemNotesViewController : UIViewController
  10. @property (strong, nonatomic) IBOutlet UITextView *tv_notes;
  11. @property (strong,nonatomic) NSString* cart_id;
  12. @property (strong,nonatomic) NSString* notes;
  13. @property (nonatomic , copy) void (^onSaveNote)(NSString* note);
  14. @end