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