We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07104dd commit 5a09e8eCopy full SHA for 5a09e8e
2 files changed
packages/core/ios/SentryScreenFramesWrapper.h
@@ -1,5 +1,7 @@
1
#import <Foundation/Foundation.h>
2
3
+#if TARGET_OS_IPHONE || TARGET_OS_MACCATALYST
4
+
5
@interface SentryScreenFramesWrapper : NSObject
6
7
+ (BOOL)canTrackFrames;
@@ -8,3 +10,5 @@
8
10
+ (NSNumber *)slowFrames;
9
11
12
@end
13
14
+#endif // TARGET_OS_IPHONE || TARGET_OS_MACCATALYST
packages/core/ios/SentryScreenFramesWrapper.m
@@ -1,6 +1,8 @@
#import "SentryScreenFramesWrapper.h"
@import Sentry;
@implementation SentryScreenFramesWrapper
+ (BOOL)canTrackFrames
@@ -33,3 +35,5 @@ + (NSNumber *)slowFrames
33
35
}
34
36
37
38
39
0 commit comments