16 lines
215 B
Objective-C
16 lines
215 B
Objective-C
//
|
|
// UIViewController+Logger.h
|
|
// Unity-iPhone
|
|
//
|
|
// Created by Hl Zhang on 2023/3/21.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
@interface UIViewController (Logger)
|
|
- (void)logEvent:(NSString *)content;
|
|
@end
|