| 12345678910111213141516 |
- //
- // ItemNotesViewController.h
- // iSales-NPD
- //
- // Created by Ray on 2/16/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface ItemNotesViewController : UIViewController
- @property (strong, nonatomic) IBOutlet UITextView *tv_notes;
- @property (strong,nonatomic) NSString* cart_id;
- @property (strong,nonatomic) NSString* notes;
- @property (nonatomic , copy) void (^onSaveNote)(NSString* note);
- @end
|