NSArray+RQExtension.h 362 B

123456789101112131415161718192021
  1. //
  2. // NSArray+RQExtension.h
  3. // XinShouJiaDao
  4. //
  5. // Created by 张嵘 on 2021/7/7.
  6. // Copyright © 2021 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NSArray (RQExtension)
  11. -(id)objAtPath:(NSIndexPath*)path;
  12. /*
  13. * @brief 将数组随机打乱
  14. */
  15. - (NSArray *)rq_randomArray;
  16. @end
  17. NS_ASSUME_NONNULL_END