// // 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;
- (void)showPicture:(UITapGestureRecognizer *)sender;
@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