NoticeSelectCell.h 409 B

1234567891011121314151617181920
  1. //
  2. // NoticeSelectCell.h
  3. // smartRhino
  4. //
  5. // Created by taidi on 2019/12/7.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// 选择收件人 抄送人
  11. @interface NoticeSelectCell : UICollectionViewCell
  12. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  13. @property (weak, nonatomic) IBOutlet TDButton *delButton;
  14. @end
  15. NS_ASSUME_NONNULL_END