PLVWVLogUtils

Objective-C

@interface PLVWVLogUtils : NSObject

/// 是否开启日志打印
+ (void)setLogEnable:(BOOL)enable;

+ (void)logWithMethod:(NSString *)method format:(NSString *)format;

@end

Swift

class PLVWVLogUtils : NSObject

Undocumented

  • 是否开启日志打印

    Declaration

    Objective-C

    + (void)setLogEnable:(BOOL)enable;

    Swift

    class func setLogEnable(_ enable: Bool)
  • Undocumented

    Declaration

    Objective-C

    + (void)logWithMethod:(NSString *)method format:(NSString *)format;

    Swift

    class func log(withMethod method: String, format: String)