| 123456789101112131415161718 |
- //
- // CommonEditorCellEditor.h
- // RA TradeFiling
- //
- // Created by Rui Zhang on 4/29/21.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CommonEditorCellEditor : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *labelName;
- @property (weak, nonatomic) IBOutlet UILabel *labelValue;
- @end
- NS_ASSUME_NONNULL_END
|