Core Plot (iOS and tvOS)
Cocoa plotting framework for macOS, iOS, and tvOS
NSCoderExtensions.h
Go to the documentation of this file.
1 
5 
8 -(void)encodeCGFloat:(CGFloat)number forKey:(nonnull NSString *)key;
9 -(void)encodeCPTPoint:(CGPoint)point forKey:(nonnull NSString *)key;
10 -(void)encodeCPTSize:(CGSize)size forKey:(nonnull NSString *)key;
11 -(void)encodeCPTRect:(CGRect)rect forKey:(nonnull NSString *)key;
12 
13 -(void)encodeCGColorSpace:(nullable CGColorSpaceRef)colorSpace forKey:(nonnull NSString *)key;
14 -(void)encodeCGPath:(nullable CGPathRef)path forKey:(nonnull NSString *)key;
15 -(void)encodeCGImage:(nullable CGImageRef)image forKey:(nonnull NSString *)key;
16 
17 -(void)encodeDecimal:(NSDecimal)number forKey:(nonnull NSString *)key;
19 
22 -(CGFloat)decodeCGFloatForKey:(nonnull NSString *)key;
23 -(CGPoint)decodeCPTPointForKey:(nonnull NSString *)key;
24 -(CGSize)decodeCPTSizeForKey:(nonnull NSString *)key;
25 -(CGRect)decodeCPTRectForKey:(nonnull NSString *)key;
26 
27 -(nullable CGColorSpaceRef)newCGColorSpaceDecodeForKey:(nonnull NSString *)key;
28 -(nullable CGPathRef)newCGPathDecodeForKey:(nonnull NSString *)key;
29 -(nullable CGImageRef)newCGImageDecodeForKey:(nonnull NSString *)key;
30 
31 -(NSDecimal)decodeDecimalForKey:(nonnull NSString *)key;
33 
34 @end
CGImageRef
typedef CGImageRef
CGPoint
typedef CGPoint
CGPathRef
typedef CGPathRef
NSCoder(CPTExtensions)
Core Plot extensions to NSCoder.
Definition: NSCoderExtensions.h:4
CGFloat
typedef CGFloat
CGSize
typedef CGSize
NSString
CGColorSpaceRef
typedef CGColorSpaceRef
CGRect
typedef CGRect
NSDecimal
typedef NSDecimal