ChangePhotoPopupView.h 689 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // ChangePhotoPopupView.h
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 4. 26..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. @protocol changePhotoDelegate <NSObject>
  11. - (void) changeSelectPhotoType:(NSInteger)index;
  12. @end
  13. @interface ChangePhotoPopupView : CustomAlertView
  14. @property (weak, nonatomic) IBOutlet CustomButton *btnPhotoSelect; // 갤러리에서 선택
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnTakePhoto; // 사진 촬영
  16. @property (weak, nonatomic) IBOutlet CustomButton *btnPhotoDelete; // 사진 삭제
  17. - (id)initFromNib;
  18. @property(weak, nonatomic) id <changePhotoDelegate> delegate;
  19. @end