20 lines
360 B
Objective-C
Executable File
20 lines
360 B
Objective-C
Executable File
//
|
|
// PkItemList.h
|
|
// romantic
|
|
//
|
|
// Created by DLAN on 2023/2/13.
|
|
// Copyright © 2023 romantic. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PkItemList : UICollectionViewCell
|
|
@property (weak, nonatomic) IBOutlet UIView *bgview;
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLab;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|