mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
16 lines
439 B
Objective-C
16 lines
439 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface PGCameraDeviceAngleSampler : NSObject
|
|
|
|
@property (nonatomic, copy) void(^deviceOrientationChanged)(UIDeviceOrientation orientation);
|
|
|
|
@property (nonatomic, readonly) UIDeviceOrientation deviceOrientation;
|
|
@property (nonatomic, readonly) bool isMeasuring;
|
|
@property (nonatomic, readonly) CGFloat currentDeviceAngle;
|
|
|
|
- (void)startMeasuring;
|
|
- (void)stopMeasuring;
|
|
|
|
@end
|