ResultView.h 526 Bytes
Newer Older
n22's avatar
n22 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
//
//  ResultView.h
//  XFFruit
//
//  Created by 陈俊俊 on 15/8/11.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol ResultViewDelegate <NSObject>
//scrollView点击事件
- (void)clickBackButton;


@end
@interface ResultView : UIView
@property (nonatomic,strong)NSArray *images;//外部传来的数组
@property (nonatomic,assign)NSInteger index;//记录是哪个图片

@property (nonatomic,weak)id<ResultViewDelegate>delegate;
- (void)setScrollView;//设置ScrollView

@end