1234567891011121314151617181920 |
- //
- // PhotoCell.h
- // LenzCameraNativeModuleForRN
- //
- // Created by 伯爵 on 2023/2/6.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PhotoCell : UICollectionViewCell
- @property (unsafe_unretained, nonatomic) IBOutlet UIImageView *imgView;
- @end
- NS_ASSUME_NONNULL_END
|