17 lines
322 B
Objective-C
17 lines
322 B
Objective-C
//
|
|
// UIImage+ShotImage.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/25.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface UIImage (ShotImage)
|
|
//截图tableviewi
|
|
+(UIImage *)saveLongImage:(UITableView *)table;
|
|
+(UIImage *)saveNavsuitImage:(UITableView *)table;
|
|
|
|
@end
|