22 lines
491 B
Objective-C
22 lines
491 B
Objective-C
//
|
|
// CameraNoParyBackVideoView.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/12/13.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
typedef NS_ENUM(NSInteger,noDataViewType){
|
|
noDataViewTypeNOSDCard,// 无sd卡
|
|
noDataViewTypeNOVideo // 没有视频
|
|
};
|
|
|
|
@interface CameraNoParyBackVideoView : UIView
|
|
|
|
@property(nonatomic,assign) noDataViewType dataType;
|
|
|
|
-(void)setViewData:(UIImage *)imag title:(NSString *)title subTitle:(NSString *)subTitle;
|
|
|
|
@end
|