1234567891011121314151617181920 |
- //
- // CircleView.h
- // FaceSDKSample_IOS
- //
- // Created by Tong,Shasha on 2017/8/31.
- // Copyright © 2017年 Baidu. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #define OutSideColor [UIColor colorWithRed:246/255.0 green:166/255.0 blue:35/255.0 alpha:1]
- #define BackgroundColor [UIColor colorWithRed:47/255.0 green:47/255.0 blue:51/255.0 alpha:1]
- @interface BDFaceCircleView : UIView
- @property (nonatomic, assign) CGRect circleRect;
- @property (nonatomic, assign) BOOL conditionStatusFit;
- @end
|