23 lines
567 B
Objective-C
23 lines
567 B
Objective-C
//
|
|
// ShotScreenImgViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/6/24.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
#import <UIKit/UIKit.h>
|
|
#import "KTThumbsViewController.h"
|
|
@class ShootImgDataSource;
|
|
#define ALERT_TAG_CLEAR 0
|
|
@interface ShotScreenImgViewController : KTThumbsViewController
|
|
{
|
|
@private
|
|
ShootImgDataSource *images_;
|
|
UIActivityIndicatorView *activityIndicatorView_;
|
|
UIWindow *window_;
|
|
}
|
|
@property (strong, nonatomic) UIBarButtonItem *btn_right;
|
|
@property (strong, nonatomic) UIBarButtonItem *negativeSpacer;
|
|
|
|
@end
|