43 lines
673 B
Plaintext
43 lines
673 B
Plaintext
//
|
|
// BuglyManagerExample.h
|
|
// YuMi
|
|
//
|
|
// Created by BuglyManager Example
|
|
// Copyright © 2024 YuMi. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "BuglyManager.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* BuglyManager 使用示例类
|
|
* 展示如何使用 BuglyManager 的各种功能
|
|
*/
|
|
@interface BuglyManagerExample : NSObject <BuglyManagerDelegate>
|
|
|
|
/**
|
|
* 设置 Bugly 代理
|
|
*/
|
|
- (void)setupBuglyDelegate;
|
|
|
|
/**
|
|
* 上报业务错误示例
|
|
*/
|
|
- (void)reportBusinessErrorExample;
|
|
|
|
/**
|
|
* 上报网络错误示例
|
|
*/
|
|
- (void)reportNetworkErrorExample;
|
|
|
|
/**
|
|
* 上报内购错误示例
|
|
*/
|
|
- (void)reportIAPErrorExample;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|