// // RAPhotoItemModel.m // Apex And Drivers // // Created by Jack on 2018/10/30. // Copyright © 2018年 USAI. All rights reserved. // #import "RAPhotoItemModel.h" @implementation RAPhotoItemModel - (void)setPhoto:(UIImage *)photo { _photo = photo; if (_delegate && [_delegate respondsToSelector:@selector(refreshUI)]) { [_delegate refreshUI]; } } - (void)setDelegate:(id)delegate { if (_delegate && [_delegate respondsToSelector:@selector(unbind)]) { [_delegate unbind]; } _delegate = delegate; } @end