21 lines
357 B
Objective-C
Executable File
21 lines
357 B
Objective-C
Executable File
//
|
|
// NoContentView.h
|
|
// DreamTown
|
|
//
|
|
// Created by 小收 on 2020/1/30.
|
|
// Copyright © 2020 小收. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NoContentView : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *imgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLab;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|