CartGeneralNotesViewController.h 486 B

1234567891011121314151617
  1. //
  2. // CartGeneralNotesViewController.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 CartGeneralNotesViewController : UIViewController
  10. @property (strong, nonatomic) IBOutlet UITextView *tv_notes;
  11. //@property (strong,nonatomic) NSString* cart_id;
  12. @property (nonatomic , copy) void (^onSetValue)(NSString* notes);
  13. @property (strong,nonatomic) NSString* notes;
  14. @end