UMPage.h 421 B

123456789101112131415161718192021
  1. //
  2. // UMPage.h
  3. // WPKCore
  4. //
  5. // Created by liuwei on 2022/6/16.
  6. // Copyright © 2022 uc. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface UMPage : NSObject
  12. + (void)trackBegin:(NSString *)methodName viewController:(UIViewController *)vc;
  13. + (void)trackEnd:(NSString *)methodName viewController:(UIViewController *)vc;
  14. @end
  15. NS_ASSUME_NONNULL_END