MKRTestObject.m 301 B

123456789101112131415161718
  1. //
  2. // MKRTestObject.m
  3. // MKRRadioManager_Example
  4. //
  5. // Created by 尹永奇 on 2020/4/28.
  6. // Copyright © 2020 yyqxiaoyin. All rights reserved.
  7. //
  8. #import "MKRTestObject.h"
  9. @implementation MKRTestObject
  10. - (void)testMethod:(NSString *)string{
  11. NSLog(@"%s---%@",__func__,string);
  12. }
  13. @end