ChangePhotoPopupView.h 525 B

1234567891011121314151617181920
  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. @interface ChangePhotoPopupView : CustomAlertView
  11. @property (weak, nonatomic) IBOutlet CustomButton *btnPhotoSelect; // 갤러리에서 선택
  12. @property (weak, nonatomic) IBOutlet CustomButton *btnTakePhoto; // 사진 촬영
  13. @property (weak, nonatomic) IBOutlet CustomButton *btnPhotoDelete; // 사진 삭제
  14. - (id)initFromNib;
  15. @end