KBARelationshipKeyPath
@interface KBARelationshipKeyPath : NSObjectKBARelationshipKeyPath is an NSObject subclass that represents a relationship key path to observe for changes.
- 
                  
                  Get the destination entity name. Given A is related to B, the destination entity name would be B.entity.name. DeclarationObjective-C @property (nonatomic, copy, readonly) NSString *_Nonnull destinationEntityName;
- 
                  
                  Get the destination property names to observe for changes. Given A is related to B, these should be names of properties on B. DeclarationObjective-C @property (nonatomic, copy, readonly) NSSet<NSString *> *_Nonnull destinationPropertyNames;
- 
                  
                  Get the inverse relationship key path. Given A is related to B, this should be relationship key path from B to A. DeclarationObjective-C @property (nonatomic, copy, readonly) NSString *_Nonnull inverseRelationshipKeyPath;
- 
                  
                  Create and return an instance of the receiver with the provided parameters. DeclarationObjective-C - (nonnull instancetype) initWithDestinationEntityName:(nonnull NSString *)destinationEntityName destinationPropertyNames: (nonnull NSSet<NSString *> *)destinationPropertyNames inverseRelationshipKeyPath: (nonnull NSString *)inverseRelationshipKeyPath;ParametersdestinationEntityNameThe destination entity name destinationPropertyNamesThe destination property names inverseRelationshipKeyPathThe inverse relationship key path Return ValueThe initialized instance 
- 
                  
                  Unavailable Undocumented DeclarationObjective-C - (instancetype)init NS_UNAVAILABLE;
- 
                  
                  Unavailable Undocumented DeclarationObjective-C + (instancetype)new NS_UNAVAILABLE;
 KBARelationshipKeyPath Class Reference
      KBARelationshipKeyPath Class Reference