InspectUpLoadFootView.h 685 Bytes
Newer Older
admin's avatar
admin committed
1 2 3 4 5 6 7 8 9 10 11 12 13
//
//  InspectUpLoadFootView.h
//  redstar
//
//  Created by admin on 15/11/25.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol InspectUpLoadFootDelegate <NSObject>

- (void)returnParentsViewController;
admin's avatar
admin committed
14
- (void)showPicture:(UITapGestureRecognizer *)sender;
admin's avatar
admin committed
15 16 17 18 19 20 21 22 23 24 25 26 27

@end


@interface InspectUpLoadFootView : UIView
@property (nonatomic, strong) UILabel *titleLabel;
- (instancetype)initWithAnswerAttachments:(NSArray *)answerAttachments
                     referenceAttachments:(NSArray *)referenceAttachments
                                   remark:(NSString *)remark;

@property (nonatomic, assign) id <InspectUpLoadFootDelegate> delegate;

@end