BugsnagLastRunInfo
Objective-C
@interface BugsnagLastRunInfo : NSObject
Swift
class BugsnagLastRunInfo : NSObject
Contains information about the last run of the app.
-
The number of consecutive runs that have ended with a crash while launching.
See
BugsnagConfiguration.launchDurationMillis
for more information.Declaration
Objective-C
@property (nonatomic, readonly) NSUInteger consecutiveLaunchCrashes;
Swift
var consecutiveLaunchCrashes: UInt { get }
-
True if the previous run crashed.
Declaration
Objective-C
@property (nonatomic, readonly) BOOL crashed;
Swift
var crashed: Bool { get }
-
True if the previous run crashed while launching.
See
BugsnagConfiguration.launchDurationMillis
for more information.Declaration
Objective-C
@property (nonatomic, readonly) BOOL crashedDuringLaunch;
Swift
var crashedDuringLaunch: Bool { get }