dkahgld

AAJsonConverter.h 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // AAJsonConverter.h
  3. // AAChartKit
  4. //
  5. // Created by An An on 17/1/9.
  6. // Copyright © 2017年 An An. All rights reserved.
  7. // source code ----*** https://github.com/AAChartModel/AAChartKit ***--- source code
  8. //
  9. /*
  10. * -------------------------------------------------------------------------------
  11. *
  12. * ❀❀❀ WARM TIPS!!! ❀❀❀
  13. *
  14. * Please contact me on GitHub,if there are any problems encountered in use.
  15. * GitHub Issues : https://github.com/AAChartModel/AAChartKit/issues
  16. * -------------------------------------------------------------------------------
  17. * And if you want to contribute for this project, please contact me as well
  18. * GitHub : https://github.com/AAChartModel
  19. * StackOverflow : https://stackoverflow.com/users/7842508/codeforu
  20. * JianShu : http://www.jianshu.com/u/f1e6753d4254
  21. * SegmentFault : https://segmentfault.com/u/huanghunbieguan
  22. *
  23. * -------------------------------------------------------------------------------
  24. */
  25. #import <Foundation/Foundation.h>
  26. @interface AAJsonConverter : NSObject
  27. /**
  28. Get pure options string
  29. @param optionsObject Instance object of AAOptions
  30. @return Pure options string without "\r" && "\n"
  31. */
  32. + (NSString *)getPureOptionsString:(id)optionsObject;
  33. /**
  34. Get pure series string
  35. @param series Series array of AAOptions
  36. @return Pure series string without "\r" && "\n"
  37. */
  38. + (NSString *)getPureSeriesString:(NSArray<NSDictionary*> *)series;
  39. @end