| 1234567891011121314151617181920212223 |
- //
- // CommonEditorCellEditor.m
- // RA TradeFiling
- //
- // Created by Rui Zhang on 4/29/21.
- //
- #import "CommonEditorCellEditor.h"
- @implementation CommonEditorCellEditor
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|