// // PhotoButton.h // FULiveDemo // // Created by liuyang on 2016/12/27. // Copyright © 2016年 liuyang. All rights reserved. // #import typedef NS_OPTIONS(NSUInteger, FUPhotoButtonType) { FUPhotoButtonTypeRecord = 1 << 0, FUPhotoButtonTypeTakePhoto = 1 << 1, }; @protocol FUPhotoButtonDelegate - (void)takePhoto; - (void)startRecord; - (void)stopRecord; @end @interface FUPhotoButton : UIButton @property (nonatomic, weak) id delegate; @property (nonatomic, assign) FUPhotoButtonType type; -(void)photoButtonFinishRecord; @end