QMUICellHeightCache

@interface QMUICellHeightCache : NSObject

- (BOOL)existsHeightForKey:(id<NSCopying>)key;
- (void)cacheHeight:(CGFloat)height byKey:(id<NSCopying>)key;
- (CGFloat)heightForKey:(id<NSCopying>)key;
- (void)invalidateHeightForKey:(id<NSCopying>)key;
- (void)invalidateAllHeightCache;

@end

Undocumented

  • Undocumented

    Declaration

    Objective-C

    - (BOOL)existsHeightForKey:(id<NSCopying>)key;

    Swift

    func existsHeight(forKey key: NSCopying!) -> Bool
  • Undocumented

    Declaration

    Objective-C

    - (void)cacheHeight:(CGFloat)height byKey:(id<NSCopying>)key;

    Swift

    func cacheHeight(_ height: CGFloat, byKey key: NSCopying!)
  • Undocumented

    Declaration

    Objective-C

    - (CGFloat)heightForKey:(id<NSCopying>)key;

    Swift

    func height(forKey key: NSCopying!) -> CGFloat
  • Undocumented

    Declaration

    Objective-C

    - (void)invalidateHeightForKey:(id<NSCopying>)key;

    Swift

    func invalidateHeight(forKey key: NSCopying!)
  • Undocumented

    Declaration

    Objective-C

    - (void)invalidateAllHeightCache;

    Swift

    func invalidateAllHeightCache()