-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add CoreData `inverse` test cases
- Loading branch information
Showing
24 changed files
with
644 additions
and
543 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// | ||
// MJExtension_Private.h | ||
// MJExtension | ||
// | ||
// Created by Frank on 2022/1/3. | ||
// Copyright © 2022 MJ Lee. All rights reserved. | ||
// | ||
|
||
#ifndef MJExtension_Private_h | ||
#define MJExtension_Private_h | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
@interface NSString (MJExtension_Private) | ||
|
||
@property (nonatomic, readonly) SEL mj_defaultSetter; | ||
|
||
@end | ||
|
||
@class MJPropertyKey; | ||
@interface NSString (MJPropertyKey) | ||
|
||
/// If JSON key is "xxx.xxx", so add one more key for it. | ||
- (MJPropertyKey *)propertyKey; | ||
|
||
/// Create keys with dot form, which is splitted by dot. | ||
- (NSArray<MJPropertyKey *> *)mj_multiKeys; | ||
|
||
@end | ||
|
||
@interface NSObject(MJExtension_Private) | ||
|
||
BOOL MJE_isFromFoundation(Class cls); | ||
|
||
@end | ||
NS_ASSUME_NONNULL_END | ||
#endif /* MJExtension_Private_h */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.