| 12345678910111213141516 |
- //
- // CommonEditorCellTextView.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 9/24/15.
- // Copyright © 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface CommonEditorCellTextView : UITableViewCell
- @property (strong, nonatomic) IBOutlet UILabel *label_name;
- @property (strong, nonatomic) IBOutlet UITextView *textview;
- @property (strong, nonatomic) IBOutlet UILabel *starMark;
- @end
|