| 12345678910111213141516171819202122232425262728293031 |
- //
- // ChangePhotoPopupView.h
- // OneCable
- //
- // Created by nComz on 2017. 4. 26..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- @protocol changePhotoDelegate <NSObject>
- - (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 <changePhotoDelegate> delegate;
- @end
|