// // ChangePhotoPopupView.h // OneCable // // Created by nComz on 2017. 4. 26.. // Copyright © 2017년 ntels. All rights reserved. // @import UIKit; #import "CustomAlertView.h" @protocol changePhotoDelegate - (void) changeSelectPhotoType:(NSInteger)index; @end @interface ChangePhotoPopupView : CustomAlertView @property (weak, nonatomic) IBOutlet CustomButton *btnPhotoSelect; // 갤러리에서 선택 @property (weak, nonatomic) IBOutlet CustomButton *btnTakePhoto; // 사진 촬영 @property (weak, nonatomic) IBOutlet CustomButton *btnPhotoDelete; // 사진 삭제 - (id)initFromNib; @property(weak, nonatomic) id delegate; @end