22 lines
404 B
Objective-C
Executable File
22 lines
404 B
Objective-C
Executable File
//
|
|
// YYJYRelationCell.h
|
|
// YaYin
|
|
//
|
|
// Created by bj_szd on 2023/7/26.
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "YYJYRelationModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface YYJYRelationCell : UICollectionViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *bgImgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLab;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|