QuartzCore Changes for Objective-C
QuartzCore
CAAnimation.h
Added CASpringAnimation
Added CASpringAnimation.mass
Modified +[CAAnimation animation]
| Declaration | |
|---|---|
| From | + (instancetype)animation |
| To | + (instancetype _Nonnull)animation |
Modified +[CAAnimation defaultValueForKey:]
| Declaration | |
|---|---|
| From | + (id)defaultValueForKey:(NSString *)key |
| To | + (id _Nullable)defaultValueForKey:(NSString * _Nonnull)key |
Modified CAAnimation.delegate
| Declaration | |
|---|---|
| From | @property(strong) id delegate |
| To | @property(strong, nullable) id delegate |
| Declaration | |
|---|---|
| From | - (BOOL)shouldArchiveValueForKey:(NSString *)key |
| To | - (BOOL)shouldArchiveValueForKey:(NSString * _Nonnull)key |
Modified CAAnimation.timingFunction
| Declaration | |
|---|---|
| From | @property(strong) CAMediaTimingFunction *timingFunction |
| To | @property(strong, nullable) CAMediaTimingFunction *timingFunction |
Modified CAAnimationGroup.animations
| Declaration | |
|---|---|
| From | @property(copy) NSArray *animations |
| To | @property(copy, nullable) NSArray<CAAnimation *> *animations |
Modified CABasicAnimation.byValue
| Declaration | |
|---|---|
| From | @property(strong) id byValue |
| To | @property(strong, nullable) id byValue |
Modified CABasicAnimation.fromValue
| Declaration | |
|---|---|
| From | @property(strong) id fromValue |
| To | @property(strong, nullable) id fromValue |
Modified CABasicAnimation.toValue
| Declaration | |
|---|---|
| From | @property(strong) id toValue |
| To | @property(strong, nullable) id toValue |
Modified CAKeyframeAnimation.biasValues
| Declaration | |
|---|---|
| From | @property(copy) NSArray *biasValues |
| To | @property(copy, nullable) NSArray<NSNumber *> *biasValues |
Modified CAKeyframeAnimation.calculationMode
| Declaration | |
|---|---|
| From | @property(copy) NSString *calculationMode |
| To | @property(copy, nonnull) NSString *calculationMode |
Modified CAKeyframeAnimation.continuityValues
| Declaration | |
|---|---|
| From | @property(copy) NSArray *continuityValues |
| To | @property(copy, nullable) NSArray<NSNumber *> *continuityValues |
Modified CAKeyframeAnimation.keyTimes
| Declaration | |
|---|---|
| From | @property(copy) NSArray *keyTimes |
| To | @property(copy, nullable) NSArray<NSNumber *> *keyTimes |
Modified CAKeyframeAnimation.path
| Declaration | |
|---|---|
| From | @property CGPathRef path |
| To | @property(nullable) CGPathRef path |
Modified CAKeyframeAnimation.rotationMode
| Declaration | |
|---|---|
| From | @property(copy) NSString *rotationMode |
| To | @property(copy, nullable) NSString *rotationMode |
Modified CAKeyframeAnimation.tensionValues
| Declaration | |
|---|---|
| From | @property(copy) NSArray *tensionValues |
| To | @property(copy, nullable) NSArray<NSNumber *> *tensionValues |
Modified CAKeyframeAnimation.timingFunctions
| Declaration | |
|---|---|
| From | @property(copy) NSArray *timingFunctions |
| To | @property(copy, nullable) NSArray<CAMediaTimingFunction *> *timingFunctions |
Modified CAKeyframeAnimation.values
| Declaration | |
|---|---|
| From | @property(copy) NSArray *values |
| To | @property(copy, nullable) NSArray *values |
| Declaration | |
|---|---|
| From | + (instancetype)animationWithKeyPath:(NSString *)path |
| To | + (instancetype _Nonnull)animationWithKeyPath:(NSString * _Nullable)path |
Modified CAPropertyAnimation.keyPath
| Declaration | |
|---|---|
| From | @property(copy) NSString *keyPath |
| To | @property(copy, nullable) NSString *keyPath |
Modified CAPropertyAnimation.valueFunction
| Declaration | |
|---|---|
| From | @property(strong) CAValueFunction *valueFunction |
| To | @property(strong, nullable) CAValueFunction *valueFunction |
Modified CATransition.filter
| Declaration | |
|---|---|
| From | @property(strong) id filter |
| To | @property(strong, nullable) id filter |
Modified CATransition.subtype
| Declaration | |
|---|---|
| From | @property(copy) NSString *subtype |
| To | @property(copy, nullable) NSString *subtype |
Modified CATransition.type
| Declaration | |
|---|---|
| From | @property(copy) NSString *type |
| To | @property(copy, nonnull) NSString *type |
Modified -[NSObject animationDidStart:]
| Declaration | |
|---|---|
| From | - (void)animationDidStart:(CAAnimation *)anim |
| To | - (void)animationDidStart:(CAAnimation * _Nonnull)anim |
Modified -[NSObject animationDidStop:finished:]
| Declaration | |
|---|---|
| From | - (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag |
| To | - (void)animationDidStop:(CAAnimation * _Nonnull)anim finished:(BOOL)flag |
CACIFilterAdditions.h (Removed)
Removed CIFilter(CACIFilterAdditions)
Modified CIFilter.enabled
| Header | |
|---|---|
| From | QuartzCore/CACIFilterAdditions.h |
| To | CoreImage/CIFilter.h |
Modified CIFilter.name
| Declaration | Header | |
|---|---|---|
| From | @property(copy) NSString *name | QuartzCore/CACIFilterAdditions.h |
| To | @property(nonatomic, copy, nonnull) NSString *name | CoreImage/CIFilter.h |
CAConstraintLayoutManager.h
| Declaration | |
|---|---|
| From | + (id)constraintWithAttribute:(CAConstraintAttribute)attr relativeTo:(NSString *)srcId attribute:(CAConstraintAttribute)srcAttr |
| To | + (instancetype _Nonnull)constraintWithAttribute:(CAConstraintAttribute)attr relativeTo:(NSString * _Nonnull)srcId attribute:(CAConstraintAttribute)srcAttr |
| Declaration | |
|---|---|
| From | + (id)constraintWithAttribute:(CAConstraintAttribute)attr relativeTo:(NSString *)srcId attribute:(CAConstraintAttribute)srcAttr offset:(CGFloat)c |
| To | + (instancetype _Nonnull)constraintWithAttribute:(CAConstraintAttribute)attr relativeTo:(NSString * _Nonnull)srcId attribute:(CAConstraintAttribute)srcAttr offset:(CGFloat)c |
| Declaration | |
|---|---|
| From | + (id)constraintWithAttribute:(CAConstraintAttribute)attr relativeTo:(NSString *)srcId attribute:(CAConstraintAttribute)srcAttr scale:(CGFloat)m offset:(CGFloat)c |
| To | + (instancetype _Nonnull)constraintWithAttribute:(CAConstraintAttribute)attr relativeTo:(NSString * _Nonnull)srcId attribute:(CAConstraintAttribute)srcAttr scale:(CGFloat)m offset:(CGFloat)c |
| Declaration | |
|---|---|
| From | - (id)initWithAttribute:(CAConstraintAttribute)attr relativeTo:(NSString *)srcId attribute:(CAConstraintAttribute)srcAttr scale:(CGFloat)m offset:(CGFloat)c |
| To | - (instancetype _Nonnull)initWithAttribute:(CAConstraintAttribute)attr relativeTo:(NSString * _Nonnull)srcId attribute:(CAConstraintAttribute)srcAttr scale:(CGFloat)m offset:(CGFloat)c |
Modified CAConstraint.sourceName
| Declaration | |
|---|---|
| From | @property(readonly) NSString *sourceName |
| To | @property(readonly, nonnull) NSString *sourceName |
| Declaration | |
|---|---|
| From | + (id)layoutManager |
| To | + (instancetype _Nonnull)layoutManager |
Modified -[CALayer addConstraint:]
| Declaration | |
|---|---|
| From | - (void)addConstraint:(CAConstraint *)c |
| To | - (void)addConstraint:(CAConstraint * _Nonnull)c |
Modified CALayer.constraints
| Declaration | |
|---|---|
| From | @property(copy) NSArray *constraints |
| To | @property(copy, nullable) NSArray<CAConstraint *> *constraints |
CAEmitterBehavior.h
Modified +[CAEmitterBehavior attributesForKey:]
| Declaration | |
|---|---|
| From | + (NSDictionary *)attributesForKey:(NSString *)key |
| To | + (NSDictionary * _Nonnull)attributesForKey:(NSString * _Nonnull)key |
Modified -[CAEmitterBehavior attributesForKeyPath:]
| Declaration | |
|---|---|
| From | - (NSDictionary *)attributesForKeyPath:(NSString *)keyPath |
| To | - (NSDictionary * _Nonnull)attributesForKeyPath:(NSString * _Nonnull)keyPath |
Modified +[CAEmitterBehavior behaviorTypes]
| Declaration | |
|---|---|
| From | + (NSArray *)behaviorTypes |
| To | + (NSArray<NSString *> * _Nonnull)behaviorTypes |
Modified +[CAEmitterBehavior behaviorWithType:]
| Declaration | |
|---|---|
| From | + (CAEmitterBehavior *)behaviorWithType:(NSString *)type |
| To | + (CAEmitterBehavior * _Nonnull)behaviorWithType:(NSString * _Nonnull)type |
Modified -[CAEmitterBehavior initWithType:]
| Declaration | |
|---|---|
| From | - (instancetype)initWithType:(NSString *)type |
| To | - (id _Nonnull)initWithType:(NSString * _Nonnull)type |
Modified -[CAEmitterBehavior inputKeys]
| Declaration | |
|---|---|
| From | - (NSArray *)inputKeys |
| To | - (NSArray * _Nonnull)inputKeys |
Modified CAEmitterBehavior.name
| Declaration | |
|---|---|
| From | @property(copy) NSString *name |
| To | @property(copy, nullable) NSString *name |
Modified CAEmitterBehavior.type
| Declaration | |
|---|---|
| From | @property(readonly) NSString *type |
| To | @property(readonly, nonnull) NSString *type |
CAEmitterCell.h
Modified CAEmitterCell.color
| Declaration | |
|---|---|
| From | @property CGColorRef color |
| To | @property(nullable) CGColorRef color |
Modified CAEmitterCell.contents
| Declaration | |
|---|---|
| From | @property(strong) id contents |
| To | @property(strong, nullable) id contents |
Modified +[CAEmitterCell defaultValueForKey:]
| Declaration | |
|---|---|
| From | + (id)defaultValueForKey:(NSString *)key |
| To | + (id _Nullable)defaultValueForKey:(NSString * _Nonnull)key |
Modified +[CAEmitterCell emitterCell]
| Declaration | |
|---|---|
| From | + (instancetype)emitterCell |
| To | + (instancetype _Nonnull)emitterCell |
Modified CAEmitterCell.emitterCells
| Declaration | |
|---|---|
| From | @property(copy) NSArray *emitterCells |
| To | @property(copy, nullable) NSArray<CAEmitterCell *> *emitterCells |
Modified CAEmitterCell.magnificationFilter
| Declaration | |
|---|---|
| From | @property(copy) NSString *magnificationFilter |
| To | @property(copy, nonnull) NSString *magnificationFilter |
Modified CAEmitterCell.minificationFilter
| Declaration | |
|---|---|
| From | @property(copy) NSString *minificationFilter |
| To | @property(copy, nonnull) NSString *minificationFilter |
Modified CAEmitterCell.name
| Declaration | |
|---|---|
| From | @property(copy) NSString *name |
| To | @property(copy, nullable) NSString *name |
| Declaration | |
|---|---|
| From | - (BOOL)shouldArchiveValueForKey:(NSString *)key |
| To | - (BOOL)shouldArchiveValueForKey:(NSString * _Nonnull)key |
Modified CAEmitterCell.style
| Declaration | |
|---|---|
| From | @property(copy) NSDictionary *style |
| To | @property(copy, nullable) NSDictionary *style |
CAEmitterLayer.h
Modified CAEmitterLayer.emitterCells
| Declaration | |
|---|---|
| From | @property(copy) NSArray *emitterCells |
| To | @property(copy, nullable) NSArray<CAEmitterCell *> *emitterCells |
Modified CAEmitterLayer.emitterMode
| Declaration | |
|---|---|
| From | @property(copy) NSString *emitterMode |
| To | @property(copy, nonnull) NSString *emitterMode |
Modified CAEmitterLayer.emitterShape
| Declaration | |
|---|---|
| From | @property(copy) NSString *emitterShape |
| To | @property(copy, nonnull) NSString *emitterShape |
Modified CAEmitterLayer.renderMode
| Declaration | |
|---|---|
| From | @property(copy) NSString *renderMode |
| To | @property(copy, nonnull) NSString *renderMode |
CAGradientLayer.h
Modified CAGradientLayer.colors
| Declaration | |
|---|---|
| From | @property(copy) NSArray *colors |
| To | @property(copy, nullable) NSArray *colors |
Modified CAGradientLayer.locations
| Declaration | |
|---|---|
| From | @property(copy) NSArray *locations |
| To | @property(copy, nullable) NSArray<NSNumber *> *locations |
Modified CAGradientLayer.type
| Declaration | |
|---|---|
| From | @property(copy) NSString *type |
| To | @property(copy, nonnull) NSString *type |
CALayer.h
Added NSNull(CAActionAdditions)
| Declaration | |
|---|---|
| From | - (void)runActionForKey:(NSString *)event object:(id)anObject arguments:(NSDictionary *)dict |
| To | - (void)runActionForKey:(NSString * _Nonnull)event object:(id _Nonnull)anObject arguments:(NSDictionary * _Nullable)dict |
Modified -[CALayer actionForKey:]
| Declaration | |
|---|---|
| From | - (id<CAAction>)actionForKey:(NSString *)event |
| To | - (id<CAAction> _Nullable)actionForKey:(NSString * _Nonnull)event |
Modified CALayer.actions
| Declaration | |
|---|---|
| From | @property(copy) NSDictionary *actions |
| To | @property(copy, nullable) NSDictionary<NSString *,id<CAAction>> *actions |
Modified -[CALayer addAnimation:forKey:]
| Declaration | |
|---|---|
| From | - (void)addAnimation:(CAAnimation *)anim forKey:(NSString *)key |
| To | - (void)addAnimation:(CAAnimation * _Nonnull)anim forKey:(NSString * _Nullable)key |
Modified -[CALayer addSublayer:]
| Declaration | |
|---|---|
| From | - (void)addSublayer:(CALayer *)layer |
| To | - (void)addSublayer:(CALayer * _Nonnull)layer |
Modified -[CALayer animationForKey:]
| Declaration | |
|---|---|
| From | - (CAAnimation *)animationForKey:(NSString *)key |
| To | - (CAAnimation * _Nullable)animationForKey:(NSString * _Nonnull)key |
Modified -[CALayer animationKeys]
| Declaration | |
|---|---|
| From | - (NSArray *)animationKeys |
| To | - (NSArray<NSString *> * _Nullable)animationKeys |
Modified CALayer.backgroundColor
| Declaration | |
|---|---|
| From | @property CGColorRef backgroundColor |
| To | @property(nullable) CGColorRef backgroundColor |
Modified CALayer.backgroundFilters
| Declaration | |
|---|---|
| From | @property(copy) NSArray *backgroundFilters |
| To | @property(copy, nullable) NSArray *backgroundFilters |
Modified CALayer.borderColor
| Declaration | |
|---|---|
| From | @property CGColorRef borderColor |
| To | @property(nullable) CGColorRef borderColor |
Modified CALayer.compositingFilter
| Declaration | |
|---|---|
| From | @property(strong) id compositingFilter |
| To | @property(strong, nullable) id compositingFilter |
Modified CALayer.contents
| Declaration | |
|---|---|
| From | @property(strong) id contents |
| To | @property(strong, nullable) id contents |
Modified CALayer.contentsGravity
| Declaration | |
|---|---|
| From | @property(copy) NSString *contentsGravity |
| To | @property(copy, nonnull) NSString *contentsGravity |
Modified -[CALayer convertPoint:fromLayer:]
| Declaration | |
|---|---|
| From | - (CGPoint)convertPoint:(CGPoint)p fromLayer:(CALayer *)l |
| To | - (CGPoint)convertPoint:(CGPoint)p fromLayer:(CALayer * _Nullable)l |
Modified -[CALayer convertPoint:toLayer:]
| Declaration | |
|---|---|
| From | - (CGPoint)convertPoint:(CGPoint)p toLayer:(CALayer *)l |
| To | - (CGPoint)convertPoint:(CGPoint)p toLayer:(CALayer * _Nullable)l |
Modified -[CALayer convertRect:fromLayer:]
| Declaration | |
|---|---|
| From | - (CGRect)convertRect:(CGRect)r fromLayer:(CALayer *)l |
| To | - (CGRect)convertRect:(CGRect)r fromLayer:(CALayer * _Nullable)l |
Modified -[CALayer convertRect:toLayer:]
| Declaration | |
|---|---|
| From | - (CGRect)convertRect:(CGRect)r toLayer:(CALayer *)l |
| To | - (CGRect)convertRect:(CGRect)r toLayer:(CALayer * _Nullable)l |
Modified -[CALayer convertTime:fromLayer:]
| Declaration | |
|---|---|
| From | - (CFTimeInterval)convertTime:(CFTimeInterval)t fromLayer:(CALayer *)l |
| To | - (CFTimeInterval)convertTime:(CFTimeInterval)t fromLayer:(CALayer * _Nullable)l |
Modified -[CALayer convertTime:toLayer:]
| Declaration | |
|---|---|
| From | - (CFTimeInterval)convertTime:(CFTimeInterval)t toLayer:(CALayer *)l |
| To | - (CFTimeInterval)convertTime:(CFTimeInterval)t toLayer:(CALayer * _Nullable)l |
Modified +[CALayer defaultActionForKey:]
| Declaration | |
|---|---|
| From | + (id<CAAction>)defaultActionForKey:(NSString *)event |
| To | + (id<CAAction> _Nullable)defaultActionForKey:(NSString * _Nonnull)event |
Modified +[CALayer defaultValueForKey:]
| Declaration | |
|---|---|
| From | + (id)defaultValueForKey:(NSString *)key |
| To | + (id _Nullable)defaultValueForKey:(NSString * _Nonnull)key |
Modified CALayer.delegate
| Declaration | |
|---|---|
| From | @property(weak) id delegate |
| To | @property(weak, nullable) id delegate |
Modified -[CALayer drawInContext:]
| Declaration | |
|---|---|
| From | - (void)drawInContext:(CGContextRef)ctx |
| To | - (void)drawInContext:(CGContextRef _Nonnull)ctx |
Modified CALayer.filters
| Declaration | |
|---|---|
| From | @property(copy) NSArray *filters |
| To | @property(copy, nullable) NSArray *filters |
Modified -[CALayer hitTest:]
| Declaration | |
|---|---|
| From | - (CALayer *)hitTest:(CGPoint)p |
| To | - (CALayer * _Nullable)hitTest:(CGPoint)p |
Modified -[CALayer init]
| Declaration | |
|---|---|
| From | - (instancetype)init |
| To | - (instancetype _Nonnull)init |
Modified -[CALayer initWithLayer:]
| Declaration | |
|---|---|
| From | - (instancetype)initWithLayer:(id)layer |
| To | - (instancetype _Nonnull)initWithLayer:(id _Nonnull)layer |
Modified -[CALayer insertSublayer:above:]
| Declaration | |
|---|---|
| From | - (void)insertSublayer:(CALayer *)layer above:(CALayer *)sibling |
| To | - (void)insertSublayer:(CALayer * _Nonnull)layer above:(CALayer * _Nullable)sibling |
Modified -[CALayer insertSublayer:atIndex:]
| Declaration | |
|---|---|
| From | - (void)insertSublayer:(CALayer *)layer atIndex:(unsigned int)idx |
| To | - (void)insertSublayer:(CALayer * _Nonnull)layer atIndex:(unsigned int)idx |
Modified -[CALayer insertSublayer:below:]
| Declaration | |
|---|---|
| From | - (void)insertSublayer:(CALayer *)layer below:(CALayer *)sibling |
| To | - (void)insertSublayer:(CALayer * _Nonnull)layer below:(CALayer * _Nullable)sibling |
Modified +[CALayer layer]
| Declaration | |
|---|---|
| From | + (instancetype)layer |
| To | + (instancetype _Nonnull)layer |
Modified CALayer.layoutManager
| Declaration | |
|---|---|
| From | @property(strong) id layoutManager |
| To | @property(strong, nullable) id layoutManager |
Modified CALayer.magnificationFilter
| Declaration | |
|---|---|
| From | @property(copy) NSString *magnificationFilter |
| To | @property(copy, nonnull) NSString *magnificationFilter |
Modified CALayer.mask
| Declaration | |
|---|---|
| From | @property(strong) CALayer *mask |
| To | @property(strong, nullable) CALayer *mask |
Modified CALayer.minificationFilter
| Declaration | |
|---|---|
| From | @property(copy) NSString *minificationFilter |
| To | @property(copy, nonnull) NSString *minificationFilter |
Modified -[CALayer modelLayer]
| Declaration | |
|---|---|
| From | - (id)modelLayer |
| To | - (id _Nonnull)modelLayer |
Modified CALayer.name
| Declaration | |
|---|---|
| From | @property(copy) NSString *name |
| To | @property(copy, nullable) NSString *name |
Modified +[CALayer needsDisplayForKey:]
| Declaration | |
|---|---|
| From | + (BOOL)needsDisplayForKey:(NSString *)key |
| To | + (BOOL)needsDisplayForKey:(NSString * _Nonnull)key |
Modified -[CALayer presentationLayer]
| Declaration | |
|---|---|
| From | - (id)presentationLayer |
| To | - (id _Nullable)presentationLayer |
Modified -[CALayer removeAnimationForKey:]
| Declaration | |
|---|---|
| From | - (void)removeAnimationForKey:(NSString *)key |
| To | - (void)removeAnimationForKey:(NSString * _Nonnull)key |
Modified -[CALayer renderInContext:]
| Declaration | |
|---|---|
| From | - (void)renderInContext:(CGContextRef)ctx |
| To | - (void)renderInContext:(CGContextRef _Nonnull)ctx |
Modified -[CALayer replaceSublayer:with:]
| Declaration | |
|---|---|
| From | - (void)replaceSublayer:(CALayer *)layer with:(CALayer *)layer2 |
| To | - (void)replaceSublayer:(CALayer * _Nonnull)layer with:(CALayer * _Nonnull)layer2 |
Modified CALayer.shadowColor
| Declaration | |
|---|---|
| From | @property CGColorRef shadowColor |
| To | @property(nullable) CGColorRef shadowColor |
Modified CALayer.shadowPath
| Declaration | |
|---|---|
| From | @property CGPathRef shadowPath |
| To | @property(nullable) CGPathRef shadowPath |
Modified -[CALayer shouldArchiveValueForKey:]
| Declaration | |
|---|---|
| From | - (BOOL)shouldArchiveValueForKey:(NSString *)key |
| To | - (BOOL)shouldArchiveValueForKey:(NSString * _Nonnull)key |
Modified CALayer.style
| Declaration | |
|---|---|
| From | @property(copy) NSDictionary *style |
| To | @property(copy, nullable) NSDictionary *style |
Modified CALayer.sublayers
| Declaration | |
|---|---|
| From | @property(copy) NSArray *sublayers |
| To | @property(copy, nullable) NSArray<CALayer *> *sublayers |
Modified CALayer.superlayer
| Declaration | |
|---|---|
| From | @property(readonly) CALayer *superlayer |
| To | @property(readonly, nullable) CALayer *superlayer |
Modified -[NSObject actionForLayer:forKey:]
| Declaration | |
|---|---|
| From | - (id<CAAction>)actionForLayer:(CALayer *)layer forKey:(NSString *)event |
| To | - (id<CAAction> _Nullable)actionForLayer:(CALayer * _Nonnull)layer forKey:(NSString * _Nonnull)event |
Modified -[NSObject displayLayer:]
| Declaration | |
|---|---|
| From | - (void)displayLayer:(CALayer *)layer |
| To | - (void)displayLayer:(CALayer * _Nonnull)layer |
Modified -[NSObject drawLayer:inContext:]
| Declaration | |
|---|---|
| From | - (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx |
| To | - (void)drawLayer:(CALayer * _Nonnull)layer inContext:(CGContextRef _Nonnull)ctx |
Modified -[NSObject invalidateLayoutOfLayer:]
| Declaration | |
|---|---|
| From | - (void)invalidateLayoutOfLayer:(CALayer *)layer |
| To | - (void)invalidateLayoutOfLayer:(CALayer * _Nonnull)layer |
Modified -[NSObject layoutSublayersOfLayer:]
| Declaration | |
|---|---|
| From | - (void)layoutSublayersOfLayer:(CALayer *)layer |
| To | - (void)layoutSublayersOfLayer:(CALayer * _Nonnull)layer |
Modified -[NSObject preferredSizeOfLayer:]
| Declaration | |
|---|---|
| From | - (CGSize)preferredSizeOfLayer:(CALayer *)layer |
| To | - (CGSize)preferredSizeOfLayer:(CALayer * _Nonnull)layer |
CAMediaTiming.h
Removed kCAFillModeFrozen
Modified CAMediaTiming.fillMode
| Declaration | |
|---|---|
| From | @property(copy) NSString *fillMode |
| To | @property(copy, nonnull) NSString *fillMode |
CAMediaTimingFunction.h
| Declaration | |
|---|---|
| From | + (instancetype)functionWithName:(NSString *)name |
| To | + (instancetype _Nonnull)functionWithName:(NSString * _Nonnull)name |
CAMetalLayer.h (Added)
Added CAMetalDrawable
Added CAMetalDrawable.layer
Added CAMetalDrawable.texture
Added CAMetalLayer
Added CAMetalLayer.colorspace
Added CAMetalLayer.device
Added CAMetalLayer.pixelFormat
CAOpenGLLayer.h
| Declaration | |
|---|---|
| From | - (BOOL)canDrawInCGLContext:(CGLContextObj)ctx pixelFormat:(CGLPixelFormatObj)pf forLayerTime:(CFTimeInterval)t displayTime:(const CVTimeStamp *)ts |
| To | - (BOOL)canDrawInCGLContext:(CGLContextObj _Nonnull)ctx pixelFormat:(CGLPixelFormatObj _Nonnull)pf forLayerTime:(CFTimeInterval)t displayTime:(const CVTimeStamp * _Nonnull)ts |
| Declaration | |
|---|---|
| From | - (CGLContextObj)copyCGLContextForPixelFormat:(CGLPixelFormatObj)pf |
| To | - (CGLContextObj _Nonnull)copyCGLContextForPixelFormat:(CGLPixelFormatObj _Nonnull)pf |
| Declaration | |
|---|---|
| From | - (CGLPixelFormatObj)copyCGLPixelFormatForDisplayMask:(uint32_t)mask |
| To | - (CGLPixelFormatObj _Nonnull)copyCGLPixelFormatForDisplayMask:(uint32_t)mask |
| Declaration | |
|---|---|
| From | - (void)drawInCGLContext:(CGLContextObj)ctx pixelFormat:(CGLPixelFormatObj)pf forLayerTime:(CFTimeInterval)t displayTime:(const CVTimeStamp *)ts |
| To | - (void)drawInCGLContext:(CGLContextObj _Nonnull)ctx pixelFormat:(CGLPixelFormatObj _Nonnull)pf forLayerTime:(CFTimeInterval)t displayTime:(const CVTimeStamp * _Nonnull)ts |
Modified -[CAOpenGLLayer releaseCGLContext:]
| Declaration | |
|---|---|
| From | - (void)releaseCGLContext:(CGLContextObj)ctx |
| To | - (void)releaseCGLContext:(CGLContextObj _Nonnull)ctx |
| Declaration | |
|---|---|
| From | - (void)releaseCGLPixelFormat:(CGLPixelFormatObj)pf |
| To | - (void)releaseCGLPixelFormat:(CGLPixelFormatObj _Nonnull)pf |
CARemoteLayerClient.h
| Declaration | |
|---|---|
| From | - (id)initWithServerPort:(mach_port_t)port |
| To | - (instancetype _Nonnull)initWithServerPort:(mach_port_t)port |
Modified CARemoteLayerClient.layer
| Declaration | |
|---|---|
| From | @property(strong) CALayer *layer |
| To | @property(strong, nullable) CALayer *layer |
CARemoteLayerServer.h
Modified +[CALayer layerWithRemoteClientId:]
| Declaration | |
|---|---|
| From | + (CALayer *)layerWithRemoteClientId:(uint32_t)client_id |
| To | + (CALayer * _Nonnull)layerWithRemoteClientId:(uint32_t)client_id |
Modified +[CARemoteLayerServer sharedServer]
| Declaration | |
|---|---|
| From | + (CARemoteLayerServer *)sharedServer |
| To | + (CARemoteLayerServer * _Nonnull)sharedServer |
CARenderer.h
| Declaration | |
|---|---|
| From | - (void)beginFrameAtTime:(CFTimeInterval)t timeStamp:(CVTimeStamp *)ts |
| To | - (void)beginFrameAtTime:(CFTimeInterval)t timeStamp:(CVTimeStamp * _Nullable)ts |
Modified CARenderer.layer
| Declaration | |
|---|---|
| From | @property(strong) CALayer *layer |
| To | @property(strong, nullable) CALayer *layer |
| Declaration | |
|---|---|
| From | + (CARenderer *)rendererWithCGLContext:(void *)ctx options:(NSDictionary *)dict |
| To | + (CARenderer * _Nonnull)rendererWithCGLContext:(void * _Nonnull)ctx options:(NSDictionary * _Nullable)dict |
CAReplicatorLayer.h
Modified CAReplicatorLayer.instanceColor
| Declaration | |
|---|---|
| From | @property CGColorRef instanceColor |
| To | @property(nullable) CGColorRef instanceColor |
CAScrollLayer.h
Modified CAScrollLayer.scrollMode
| Declaration | |
|---|---|
| From | @property(copy) NSString *scrollMode |
| To | @property(copy, nonnull) NSString *scrollMode |
CAShapeLayer.h
Modified CAShapeLayer.fillColor
| Declaration | |
|---|---|
| From | @property CGColorRef fillColor |
| To | @property(nullable) CGColorRef fillColor |
Modified CAShapeLayer.fillRule
| Declaration | |
|---|---|
| From | @property(copy) NSString *fillRule |
| To | @property(copy, nonnull) NSString *fillRule |
Modified CAShapeLayer.lineCap
| Declaration | |
|---|---|
| From | @property(copy) NSString *lineCap |
| To | @property(copy, nonnull) NSString *lineCap |
Modified CAShapeLayer.lineDashPattern
| Declaration | |
|---|---|
| From | @property(copy) NSArray *lineDashPattern |
| To | @property(copy, nullable) NSArray<NSNumber *> *lineDashPattern |
Modified CAShapeLayer.lineJoin
| Declaration | |
|---|---|
| From | @property(copy) NSString *lineJoin |
| To | @property(copy, nonnull) NSString *lineJoin |
Modified CAShapeLayer.path
| Declaration | |
|---|---|
| From | @property CGPathRef path |
| To | @property(nullable) CGPathRef path |
Modified CAShapeLayer.strokeColor
| Declaration | |
|---|---|
| From | @property CGColorRef strokeColor |
| To | @property(nullable) CGColorRef strokeColor |
CATextLayer.h
Modified CATextLayer.alignmentMode
| Declaration | |
|---|---|
| From | @property(copy) NSString *alignmentMode |
| To | @property(copy, nonnull) NSString *alignmentMode |
Modified CATextLayer.font
| Declaration | |
|---|---|
| From | @property CFTypeRef font |
| To | @property(nullable) CFTypeRef font |
Modified CATextLayer.foregroundColor
| Declaration | |
|---|---|
| From | @property CGColorRef foregroundColor |
| To | @property(nullable) CGColorRef foregroundColor |
Modified CATextLayer.string
| Declaration | |
|---|---|
| From | @property(copy) id string |
| To | @property(copy, nullable) id string |
Modified CATextLayer.truncationMode
| Declaration | |
|---|---|
| From | @property(copy) NSString *truncationMode |
| To | @property(copy, nonnull) NSString *truncationMode |
CATransaction.h
| Declaration | |
|---|---|
| From | + (CAMediaTimingFunction *)animationTimingFunction |
| To | + (CAMediaTimingFunction * _Nullable)animationTimingFunction |
Modified +[CATransaction completionBlock]
| Declaration | |
|---|---|
| From | + (void (^)(void))completionBlock |
| To | + (void (^ _Nullable)(void))completionBlock |
| Declaration | |
|---|---|
| From | + (void)setAnimationTimingFunction:(CAMediaTimingFunction *)function |
| To | + (void)setAnimationTimingFunction:(CAMediaTimingFunction * _Nullable)function |
Modified +[CATransaction setCompletionBlock:]
| Declaration | |
|---|---|
| From | + (void)setCompletionBlock:(void (^)(void))block |
| To | + (void)setCompletionBlock:(void (^ _Nullable)(void))block |
Modified +[CATransaction setValue:forKey:]
| Declaration | |
|---|---|
| From | + (void)setValue:(id)anObject forKey:(NSString *)key |
| To | + (void)setValue:(id _Nullable)anObject forKey:(NSString * _Nonnull)key |
Modified +[CATransaction valueForKey:]
| Declaration | |
|---|---|
| From | + (id)valueForKey:(NSString *)key |
| To | + (id _Nullable)valueForKey:(NSString * _Nonnull)key |
CATransform3D.h
Modified +[NSValue valueWithCATransform3D:]
| Declaration | |
|---|---|
| From | + (NSValue *)valueWithCATransform3D:(CATransform3D)t |
| To | + (NSValue * _Nonnull)valueWithCATransform3D:(CATransform3D)t |
CAValueFunction.h
Modified +[CAValueFunction functionWithName:]
| Declaration | |
|---|---|
| From | + (instancetype)functionWithName:(NSString *)name |
| To | + (instancetype _Nullable)functionWithName:(NSString * _Nonnull)name |
Modified CAValueFunction.name
| Declaration | |
|---|---|
| From | @property(readonly) NSString *name |
| To | @property(readonly, nonnull) NSString *name |
CIColor.h (Removed)
Modified CIColor
| Protocols | Header | |
|---|---|---|
| From | NSCoding, NSCopying | CoreImage/CIColor.h |
| To | NSCopying, NSSecureCoding | CoreImage/CIColor.h |
Modified CIColor.alpha
| Declaration | Header | |
|---|---|---|
| From | - (CGFloat)alpha | CoreImage/CIColor.h |
| To | @property(readonly) CGFloat alpha | CoreImage/CIColor.h |
Modified CIColor.blue
| Declaration | Header | |
|---|---|---|
| From | - (CGFloat)blue | CoreImage/CIColor.h |
| To | @property(readonly) CGFloat blue | CoreImage/CIColor.h |
Modified CIColor.colorSpace
| Declaration | Header | |
|---|---|---|
| From | - (CGColorSpaceRef)colorSpace | CoreImage/CIColor.h |
| To | @property(readonly, nonnull) CGColorSpaceRef colorSpace | CoreImage/CIColor.h |
Modified +[CIColor colorWithCGColor:]
| Declaration | Header | |
|---|---|---|
| From | + (CIColor *)colorWithCGColor:(CGColorRef)c | CoreImage/CIColor.h |
| To | + (instancetype _Nonnull)colorWithCGColor:(CGColorRef _Nonnull)c | CoreImage/CIColor.h |
Modified +[CIColor colorWithRed:green:blue:]
| Declaration | Header | |
|---|---|---|
| From | + (CIColor *)colorWithRed:(CGFloat)r green:(CGFloat)g blue:(CGFloat)b | CoreImage/CIColor.h |
| To | + (instancetype _Nonnull)colorWithRed:(CGFloat)r green:(CGFloat)g blue:(CGFloat)b | CoreImage/CIColor.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIColor *)colorWithRed:(CGFloat)r green:(CGFloat)g blue:(CGFloat)b alpha:(CGFloat)a | CoreImage/CIColor.h |
| To | + (instancetype _Nonnull)colorWithRed:(CGFloat)r green:(CGFloat)g blue:(CGFloat)b alpha:(CGFloat)a | CoreImage/CIColor.h |
Modified +[CIColor colorWithString:]
| Declaration | Header | |
|---|---|---|
| From | + (CIColor *)colorWithString:(NSString *)representation | CoreImage/CIColor.h |
| To | + (instancetype _Nonnull)colorWithString:(NSString * _Nonnull)representation | CoreImage/CIColor.h |
Modified CIColor.components
| Declaration | Header | |
|---|---|---|
| From | - (const CGFloat *)components | CoreImage/CIColor.h |
| To | @property(readonly, nonnull) const CGFloat *components | CoreImage/CIColor.h |
Modified CIColor.green
| Declaration | Header | |
|---|---|---|
| From | - (CGFloat)green | CoreImage/CIColor.h |
| To | @property(readonly) CGFloat green | CoreImage/CIColor.h |
Modified -[CIColor initWithCGColor:]
| Declaration | Header | Designated Initializer | |
|---|---|---|---|
| From | - (id)initWithCGColor:(CGColorRef)c | CoreImage/CIColor.h | -- |
| To | - (instancetype _Nonnull)initWithCGColor:(CGColorRef _Nonnull)c | CoreImage/CIColor.h | yes |
Modified CIColor.numberOfComponents
| Declaration | Header | |
|---|---|---|
| From | - (size_t)numberOfComponents | CoreImage/CIColor.h |
| To | @property(readonly) size_t numberOfComponents | CoreImage/CIColor.h |
Modified CIColor.red
| Declaration | Header | |
|---|---|---|
| From | - (CGFloat)red | CoreImage/CIColor.h |
| To | @property(readonly) CGFloat red | CoreImage/CIColor.h |
Modified CIColor.stringRepresentation
| Declaration | Header | |
|---|---|---|
| From | - (NSString *)stringRepresentation | CoreImage/CIColor.h |
| To | @property(readonly, nonnull) NSString *stringRepresentation | CoreImage/CIColor.h |
CIContext.h (Removed)
Modified CIContext
| Header | |
|---|---|
| From | CoreImage/CIContext.h |
| To | CoreImage/CIContext.h |
Modified -[CIContext clearCaches]
| Header | |
|---|---|
| From | CoreImage/CIContext.h |
| To | CoreImage/CIContext.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIContext *)contextForOfflineGPUAtIndex:(unsigned int)index | CoreImage/CIContext.h |
| To | + (CIContext * _Nonnull)contextForOfflineGPUAtIndex:(unsigned int)index | CoreImage/CIContext.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIContext *)contextForOfflineGPUAtIndex:(unsigned int)index colorSpace:(CGColorSpaceRef)colorSpace options:(NSDictionary *)options sharedContext:(CGLContextObj)sharedContext | CoreImage/CIContext.h |
| To | + (CIContext * _Nonnull)contextForOfflineGPUAtIndex:(unsigned int)index colorSpace:(CGColorSpaceRef _Nullable)colorSpace options:(NSDictionary<NSString *,id> * _Nullable)options sharedContext:(CGLContextObj _Nullable)sharedContext | CoreImage/CIContext.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIContext *)contextWithCGContext:(CGContextRef)ctx options:(NSDictionary *)dict | CoreImage/CIContext.h |
| To | + (CIContext * _Nonnull)contextWithCGContext:(CGContextRef _Nonnull)cgctx options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIContext.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIContext *)contextWithCGLContext:(CGLContextObj)ctx pixelFormat:(CGLPixelFormatObj)pf colorSpace:(CGColorSpaceRef)cs options:(NSDictionary *)dict | CoreImage/CIContext.h |
| To | + (CIContext * _Nonnull)contextWithCGLContext:(CGLContextObj _Nonnull)cglctx pixelFormat:(CGLPixelFormatObj _Nullable)pixelFormat colorSpace:(CGColorSpaceRef _Nullable)colorSpace options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIContext.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIContext *)contextWithCGLContext:(CGLContextObj)ctx pixelFormat:(CGLPixelFormatObj)pf options:(NSDictionary *)dict | CoreImage/CIContext.h |
| To | + (CIContext * _Nonnull)contextWithCGLContext:(CGLContextObj _Nonnull)cglctx pixelFormat:(CGLPixelFormatObj _Nullable)pixelFormat options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIContext.h |
Modified -[CIContext createCGImage:fromRect:]
| Declaration | Header | |
|---|---|---|
| From | - (CGImageRef)createCGImage:(CIImage *)im fromRect:(CGRect)r | CoreImage/CIContext.h |
| To | - (CGImageRef _Nonnull)createCGImage:(CIImage * _Nonnull)image fromRect:(CGRect)fromRect | CoreImage/CIContext.h |
| Declaration | Header | |
|---|---|---|
| From | - (CGImageRef)createCGImage:(CIImage *)im fromRect:(CGRect)r format:(CIFormat)f colorSpace:(CGColorSpaceRef)cs | CoreImage/CIContext.h |
| To | - (CGImageRef _Nonnull)createCGImage:(CIImage * _Nonnull)image fromRect:(CGRect)fromRect format:(CIFormat)format colorSpace:(CGColorSpaceRef _Nullable)colorSpace | CoreImage/CIContext.h |
| Declaration | Deprecation | Header | |
|---|---|---|---|
| From | - (CGLayerRef)createCGLayerWithSize:(CGSize)size info:(CFDictionaryRef)d | -- | CoreImage/CIContext.h |
| To | - (CGLayerRef _Nonnull)createCGLayerWithSize:(CGSize)size info:(CFDictionaryRef _Nullable)info | OS X 10.11 | CoreImage/CIContext.h |
| Declaration | Header | |
|---|---|---|
| From | - (void)drawImage:(CIImage *)im atPoint:(CGPoint)p fromRect:(CGRect)src | CoreImage/CIContext.h |
| To | - (void)drawImage:(CIImage * _Nonnull)image atPoint:(CGPoint)atPoint fromRect:(CGRect)fromRect | CoreImage/CIContext.h |
| Declaration | Header | |
|---|---|---|
| From | - (void)drawImage:(CIImage *)im inRect:(CGRect)dest fromRect:(CGRect)src | CoreImage/CIContext.h |
| To | - (void)drawImage:(CIImage * _Nonnull)image inRect:(CGRect)inRect fromRect:(CGRect)fromRect | CoreImage/CIContext.h |
Modified +[CIContext offlineGPUCount]
| Header | |
|---|---|
| From | CoreImage/CIContext.h |
| To | CoreImage/CIContext.h |
Modified -[CIContext reclaimResources]
| Header | |
|---|---|
| From | CoreImage/CIContext.h |
| To | CoreImage/CIContext.h |
| Declaration | Header | |
|---|---|---|
| From | - (void)render:(CIImage *)im toBitmap:(void *)data rowBytes:(ptrdiff_t)rb bounds:(CGRect)r format:(CIFormat)f colorSpace:(CGColorSpaceRef)cs | CoreImage/CIContext.h |
| To | - (void)render:(CIImage * _Nonnull)image toBitmap:(void * _Nonnull)data rowBytes:(ptrdiff_t)rowBytes bounds:(CGRect)bounds format:(CIFormat)format colorSpace:(CGColorSpaceRef _Nullable)colorSpace | CoreImage/CIContext.h |
| Declaration | Header | |
|---|---|---|
| From | - (void)render:(CIImage *)im toIOSurface:(IOSurfaceRef)surface bounds:(CGRect)r colorSpace:(CGColorSpaceRef)cs | CoreImage/CIContext.h |
| To | - (void)render:(CIImage * _Nonnull)image toIOSurface:(IOSurfaceRef _Nonnull)surface bounds:(CGRect)bounds colorSpace:(CGColorSpaceRef _Nullable)colorSpace | CoreImage/CIContext.h |
Modified kCIContextOutputColorSpace
| Introduction | Header | |
|---|---|---|
| From | OS X 10.4 | CoreImage/CIContext.h |
| To | OS X 10.6 | CoreImage/CIContext.h |
Modified kCIContextUseSoftwareRenderer
| Introduction | Header | |
|---|---|---|
| From | OS X 10.4 | CoreImage/CIContext.h |
| To | OS X 10.6 | CoreImage/CIContext.h |
Modified kCIContextWorkingColorSpace
| Introduction | Header | |
|---|---|---|
| From | OS X 10.4 | CoreImage/CIContext.h |
| To | OS X 10.6 | CoreImage/CIContext.h |
CIDetector.h (Removed)
Modified CIDetector
| Header | |
|---|---|
| From | CoreImage/CIDetector.h |
| To | CoreImage/CIDetector.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIDetector *)detectorOfType:(NSString *)type context:(CIContext *)context options:(NSDictionary *)options | CoreImage/CIDetector.h |
| To | + (CIDetector * _Nonnull)detectorOfType:(NSString * _Nonnull)type context:(CIContext * _Nullable)context options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIDetector.h |
Modified -[CIDetector featuresInImage:]
| Declaration | Header | |
|---|---|---|
| From | - (NSArray *)featuresInImage:(CIImage *)image | CoreImage/CIDetector.h |
| To | - (NSArray<CIFeature *> * _Nonnull)featuresInImage:(CIImage * _Nonnull)image | CoreImage/CIDetector.h |
| Declaration | Header | |
|---|---|---|
| From | - (NSArray *)featuresInImage:(CIImage *)image options:(NSDictionary *)options | CoreImage/CIDetector.h |
| To | - (NSArray<CIFeature *> * _Nonnull)featuresInImage:(CIImage * _Nonnull)image options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIDetector.h |
Modified CIDetectorAccuracy
| Header | |
|---|---|
| From | CoreImage/CIDetector.h |
| To | CoreImage/CIDetector.h |
Modified CIDetectorAccuracyHigh
| Header | |
|---|---|
| From | CoreImage/CIDetector.h |
| To | CoreImage/CIDetector.h |
Modified CIDetectorAccuracyLow
| Header | |
|---|---|
| From | CoreImage/CIDetector.h |
| To | CoreImage/CIDetector.h |
Modified CIDetectorAspectRatio
| Header | |
|---|---|
| From | CoreImage/CIDetector.h |
| To | CoreImage/CIDetector.h |
Modified CIDetectorEyeBlink
| Header | |
|---|---|
| From | CoreImage/CIDetector.h |
| To | CoreImage/CIDetector.h |
Modified CIDetectorFocalLength
| Header | |
|---|---|
| From | CoreImage/CIDetector.h |
| To | CoreImage/CIDetector.h |
Modified CIDetectorImageOrientation
| Header | |
|---|---|
| From | CoreImage/CIDetector.h |
| To | CoreImage/CIDetector.h |
Modified CIDetectorMinFeatureSize
| Header | |
|---|---|
| From | CoreImage/CIDetector.h |
| To | CoreImage/CIDetector.h |
Modified CIDetectorSmile
| Header | |
|---|---|
| From | CoreImage/CIDetector.h |
| To | CoreImage/CIDetector.h |
Modified CIDetectorTracking
| Header | |
|---|---|
| From | CoreImage/CIDetector.h |
| To | CoreImage/CIDetector.h |
Modified CIDetectorTypeFace
| Header | |
|---|---|
| From | CoreImage/CIDetector.h |
| To | CoreImage/CIDetector.h |
Modified CIDetectorTypeQRCode
| Header | |
|---|---|
| From | CoreImage/CIDetector.h |
| To | CoreImage/CIDetector.h |
Modified CIDetectorTypeRectangle
| Header | |
|---|---|
| From | CoreImage/CIDetector.h |
| To | CoreImage/CIDetector.h |
CIFeature.h (Removed)
Modified CIFaceFeature
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.bounds
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.faceAngle
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.hasFaceAngle
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.hasLeftEyePosition
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.hasMouthPosition
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.hasRightEyePosition
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.hasSmile
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.hasTrackingFrameCount
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.hasTrackingID
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.leftEyeClosed
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.leftEyePosition
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.mouthPosition
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.rightEyeClosed
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.rightEyePosition
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.trackingFrameCount
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFaceFeature.trackingID
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFeature
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFeature.bounds
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFeature.type
| Declaration | Header | |
|---|---|---|
| From | @property(readonly, retain) NSString *type | CoreImage/CIFeature.h |
| To | @property(readonly, retain, nonnull) NSString *type | CoreImage/CIFeature.h |
Modified CIQRCodeFeature
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIQRCodeFeature.bottomLeft
| Declaration | Header | |
|---|---|---|
| From | @property(readonly, assign) CGPoint bottomLeft | CoreImage/CIFeature.h |
| To | @property(readonly) CGPoint bottomLeft | CoreImage/CIFeature.h |
Modified CIQRCodeFeature.bottomRight
| Declaration | Header | |
|---|---|---|
| From | @property(readonly, assign) CGPoint bottomRight | CoreImage/CIFeature.h |
| To | @property(readonly) CGPoint bottomRight | CoreImage/CIFeature.h |
Modified CIQRCodeFeature.bounds
| Declaration | Header | |
|---|---|---|
| From | @property(readonly, assign) CGRect bounds | CoreImage/CIFeature.h |
| To | @property(readonly) CGRect bounds | CoreImage/CIFeature.h |
Modified CIQRCodeFeature.messageString
| Declaration | Header | |
|---|---|---|
| From | @property(readonly, copy) NSString *messageString | CoreImage/CIFeature.h |
| To | @property(readonly, nonnull) NSString *messageString | CoreImage/CIFeature.h |
Modified CIQRCodeFeature.topLeft
| Declaration | Header | |
|---|---|---|
| From | @property(readonly, assign) CGPoint topLeft | CoreImage/CIFeature.h |
| To | @property(readonly) CGPoint topLeft | CoreImage/CIFeature.h |
Modified CIQRCodeFeature.topRight
| Declaration | Header | |
|---|---|---|
| From | @property(readonly, assign) CGPoint topRight | CoreImage/CIFeature.h |
| To | @property(readonly) CGPoint topRight | CoreImage/CIFeature.h |
Modified CIRectangleFeature
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIRectangleFeature.bottomLeft
| Declaration | Header | |
|---|---|---|
| From | @property(readonly, assign) CGPoint bottomLeft | CoreImage/CIFeature.h |
| To | @property(readonly) CGPoint bottomLeft | CoreImage/CIFeature.h |
Modified CIRectangleFeature.bottomRight
| Declaration | Header | |
|---|---|---|
| From | @property(readonly, assign) CGPoint bottomRight | CoreImage/CIFeature.h |
| To | @property(readonly) CGPoint bottomRight | CoreImage/CIFeature.h |
Modified CIRectangleFeature.bounds
| Declaration | Header | |
|---|---|---|
| From | @property(readonly, assign) CGRect bounds | CoreImage/CIFeature.h |
| To | @property(readonly) CGRect bounds | CoreImage/CIFeature.h |
Modified CIRectangleFeature.topLeft
| Declaration | Header | |
|---|---|---|
| From | @property(readonly, assign) CGPoint topLeft | CoreImage/CIFeature.h |
| To | @property(readonly) CGPoint topLeft | CoreImage/CIFeature.h |
Modified CIRectangleFeature.topRight
| Declaration | Header | |
|---|---|---|
| From | @property(readonly, assign) CGPoint topRight | CoreImage/CIFeature.h |
| To | @property(readonly) CGPoint topRight | CoreImage/CIFeature.h |
Modified CIFeatureTypeFace
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
Modified CIFeatureTypeRectangle
| Header | |
|---|---|
| From | CoreImage/CIFeature.h |
| To | CoreImage/CIFeature.h |
CIFilter.h (Removed)
Modified CIFilter
| Protocols | Header | |
|---|---|---|
| From | NSCoding, NSCopying | CoreImage/CIFilter.h |
| To | NSCopying, NSSecureCoding | CoreImage/CIFilter.h |
Modified -[CIFilter apply:]
| Declaration | Header | |
|---|---|---|
| From | - (CIImage *)apply:(CIKernel *)k, ... | CoreImage/CIFilter.h |
| To | - (CIImage * _Nullable)apply:(CIKernel * _Nonnull)k, ... | CoreImage/CIFilter.h |
Modified -[CIFilter apply:arguments:options:]
| Declaration | Header | |
|---|---|---|
| From | - (CIImage *)apply:(CIKernel *)k arguments:(NSArray *)args options:(NSDictionary *)dict | CoreImage/CIFilter.h |
| To | - (CIImage * _Nullable)apply:(CIKernel * _Nonnull)k arguments:(NSArray * _Nullable)args options:(NSDictionary<NSString *,id> * _Nullable)dict | CoreImage/CIFilter.h |
Modified CIFilter.attributes
| Declaration | Header | |
|---|---|---|
| From | - (NSDictionary *)attributes | CoreImage/CIFilter.h |
| To | @property(nonatomic, readonly, nonnull) NSDictionary<NSString *,id> *attributes | CoreImage/CIFilter.h |
| Declaration | Header | |
|---|---|---|
| From | + (NSArray *)filterArrayFromSerializedXMP:(NSData *)xmpData inputImageExtent:(CGRect)extent error:(NSError **)outError | CoreImage/CIFilter.h |
| To | + (NSArray<CIFilter *> * _Nonnull)filterArrayFromSerializedXMP:(NSData * _Nonnull)xmpData inputImageExtent:(CGRect)extent error:(NSError * _Nullable * _Nullable)outError | CoreImage/CIFilter.h |
Modified +[CIFilter filterNamesInCategories:]
| Declaration | Header | |
|---|---|---|
| From | + (NSArray *)filterNamesInCategories:(NSArray *)categories | CoreImage/CIFilter.h |
| To | + (NSArray<NSString *> * _Nonnull)filterNamesInCategories:(NSArray<NSString *> * _Nullable)categories | CoreImage/CIFilter.h |
Modified +[CIFilter filterNamesInCategory:]
| Declaration | Header | |
|---|---|---|
| From | + (NSArray *)filterNamesInCategory:(NSString *)category | CoreImage/CIFilter.h |
| To | + (NSArray<NSString *> * _Nonnull)filterNamesInCategory:(NSString * _Nullable)category | CoreImage/CIFilter.h |
Modified +[CIFilter filterWithName:]
| Declaration | Header | |
|---|---|---|
| From | + (CIFilter *)filterWithName:(NSString *)name | CoreImage/CIFilter.h |
| To | + (CIFilter * _Nullable)filterWithName:(NSString * _Nonnull)name | CoreImage/CIFilter.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIFilter *)filterWithName:(NSString *)name keysAndValues:(id)key0, ... | CoreImage/CIFilter.h |
| To | + (CIFilter * _Nullable)filterWithName:(NSString * _Nonnull)name keysAndValues:(id)key0, ... | CoreImage/CIFilter.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIFilter *)filterWithName:(NSString *)name withInputParameters:(NSDictionary *)params | CoreImage/CIFilter.h |
| To | + (CIFilter * _Nullable)filterWithName:(NSString * _Nonnull)name withInputParameters:(NSDictionary<NSString *,id> * _Nullable)params | CoreImage/CIFilter.h |
Modified CIFilter.inputKeys
| Declaration | Header | |
|---|---|---|
| From | - (NSArray *)inputKeys | CoreImage/CIFilter.h |
| To | @property(nonatomic, readonly, nonnull) NSArray<NSString *> *inputKeys | CoreImage/CIFilter.h |
| Declaration | Introduction | Header | |
|---|---|---|---|
| From | + (NSString *)localizedDescriptionForFilterName:(NSString *)filterName | OS X 10.5 | CoreImage/CIFilter.h |
| To | + (NSString * _Nullable)localizedDescriptionForFilterName:(NSString * _Nonnull)filterName | OS X 10.4 | CoreImage/CIFilter.h |
| Declaration | Header | |
|---|---|---|
| From | + (NSString *)localizedNameForCategory:(NSString *)category | CoreImage/CIFilter.h |
| To | + (NSString * _Nonnull)localizedNameForCategory:(NSString * _Nonnull)category | CoreImage/CIFilter.h |
| Declaration | Header | |
|---|---|---|
| From | + (NSString *)localizedNameForFilterName:(NSString *)filterName | CoreImage/CIFilter.h |
| To | + (NSString * _Nullable)localizedNameForFilterName:(NSString * _Nonnull)filterName | CoreImage/CIFilter.h |
| Declaration | Introduction | Header | |
|---|---|---|---|
| From | + (NSURL *)localizedReferenceDocumentationForFilterName:(NSString *)filterName | OS X 10.5 | CoreImage/CIFilter.h |
| To | + (NSURL * _Nullable)localizedReferenceDocumentationForFilterName:(NSString * _Nonnull)filterName | OS X 10.4 | CoreImage/CIFilter.h |
Modified CIFilter.outputImage
| Declaration | Header | |
|---|---|---|
| From | @property(readonly, nonatomic) CIImage *outputImage | CoreImage/CIFilter.h |
| To | @property(readonly, nonatomic, nullable) CIImage *outputImage | CoreImage/CIFilter.h |
Modified CIFilter.outputKeys
| Declaration | Header | |
|---|---|---|
| From | - (NSArray *)outputKeys | CoreImage/CIFilter.h |
| To | @property(nonatomic, readonly, nonnull) NSArray<NSString *> *outputKeys | CoreImage/CIFilter.h |
| Declaration | Header | |
|---|---|---|
| From | + (void)registerFilterName:(NSString *)name constructor:(id<CIFilterConstructor>)anObject classAttributes:(NSDictionary *)attributes | CoreImage/CIFilter.h |
| To | + (void)registerFilterName:(NSString * _Nonnull)name constructor:(id<CIFilterConstructor> _Nonnull)anObject classAttributes:(NSDictionary<NSString *,id> * _Nonnull)attributes | CoreImage/CIFilter.h |
| Declaration | Header | |
|---|---|---|
| From | + (NSData *)serializedXMPFromFilters:(NSArray *)filters inputImageExtent:(CGRect)extent | CoreImage/CIFilter.h |
| To | + (NSData * _Nonnull)serializedXMPFromFilters:(NSArray<CIFilter *> * _Nonnull)filters inputImageExtent:(CGRect)extent | CoreImage/CIFilter.h |
Modified -[CIFilter setDefaults]
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified CIFilter(CIFilterRegistry)
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified CIFilter(CIFilterXMPSerialization)
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIApplyOptionColorSpace
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIApplyOptionDefinition
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIApplyOptionExtent
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIApplyOptionUserInfo
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeClass
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeDefault
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeDescription
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeDisplayName
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeFilterCategories
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeFilterDisplayName
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeFilterName
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeIdentity
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeMax
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeMin
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeName
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeReferenceDocumentation
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeSliderMax
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeSliderMin
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeType
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeTypeAngle
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeTypeBoolean
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeTypeCount
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeTypeDistance
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeTypeGradient
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeTypeInteger
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeTypeOffset
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeTypeOpaqueColor
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeTypePosition
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeTypePosition3
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeTypeRectangle
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeTypeScalar
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIAttributeTypeTime
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryBlur
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryBuiltIn
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryColorAdjustment
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryColorEffect
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryCompositeOperation
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryDistortionEffect
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryFilterGenerator
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryGenerator
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryGeometryAdjustment
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryGradient
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryHalftoneEffect
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryHighDynamicRange
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryInterlaced
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryNonSquarePixels
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryReduction
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategorySharpen
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryStillImage
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryStylize
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryTileEffect
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryTransition
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCICategoryVideo
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputAngleKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputAspectRatioKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputBackgroundImageKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputBrightnessKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputCenterKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputColorKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputContrastKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputEVKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputExtentKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputGradientImageKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputImageKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputIntensityKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputMaskImageKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputRadiusKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputRefractionKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputSaturationKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputScaleKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputShadingImageKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputSharpnessKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputTargetImageKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputTimeKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputTransformKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputWidthKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIOutputImageKey
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIUIParameterSet
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIUISetAdvanced
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIUISetBasic
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIUISetDevelopment
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIUISetIntermediate
| Header | |
|---|---|
| From | CoreImage/CIFilter.h |
| To | CoreImage/CIFilter.h |
CIFilterConstructor.h (Removed)
Modified CIFilterConstructor
| Header | |
|---|---|
| From | CoreImage/CIFilterConstructor.h |
| To | CoreImage/CIFilterConstructor.h |
| Declaration | Header | |
|---|---|---|
| From | - (CIFilter *)filterWithName:(NSString *)name | CoreImage/CIFilterConstructor.h |
| To | - (CIFilter * _Nullable)filterWithName:(NSString * _Nonnull)name | CoreImage/CIFilterConstructor.h |
CIFilterGenerator.h (Removed)
Modified CIFilterGenerator
| Protocols | Header | |
|---|---|---|
| From | CIFilterConstructor, NSCoding, NSCopying | CoreImage/CIFilterGenerator.h |
| To | CIFilterConstructor, NSCopying, NSSecureCoding | CoreImage/CIFilterGenerator.h |
Modified CIFilterGenerator.classAttributes
| Declaration | Header | |
|---|---|---|
| From | - (NSDictionary *)classAttributes | CoreImage/CIFilterGenerator.h |
| To | @property(retain, nonatomic, nonnull) NSDictionary *classAttributes | CoreImage/CIFilterGenerator.h |
| Declaration | Header | |
|---|---|---|
| From | - (void)connectObject:(id)sourceObject withKey:(NSString *)sourceKey toObject:(id)targetObject withKey:(NSString *)targetKey | CoreImage/CIFilterGenerator.h |
| To | - (void)connectObject:(id _Nonnull)sourceObject withKey:(NSString * _Nullable)sourceKey toObject:(id _Nonnull)targetObject withKey:(NSString * _Nonnull)targetKey | CoreImage/CIFilterGenerator.h |
| Declaration | Header | |
|---|---|---|
| From | - (void)disconnectObject:(id)sourceObject withKey:(NSString *)key toObject:(id)targetObject withKey:(NSString *)targetKey | CoreImage/CIFilterGenerator.h |
| To | - (void)disconnectObject:(id _Nonnull)sourceObject withKey:(NSString * _Nonnull)key toObject:(id _Nonnull)targetObject withKey:(NSString * _Nonnull)targetKey | CoreImage/CIFilterGenerator.h |
Modified CIFilterGenerator.exportedKeys
| Declaration | Header | |
|---|---|---|
| From | - (NSDictionary *)exportedKeys | CoreImage/CIFilterGenerator.h |
| To | @property(readonly, nonatomic, nonnull) NSDictionary *exportedKeys | CoreImage/CIFilterGenerator.h |
| Declaration | Header | |
|---|---|---|
| From | - (void)exportKey:(NSString *)key fromObject:(id)targetObject withName:(NSString *)exportedKeyName | CoreImage/CIFilterGenerator.h |
| To | - (void)exportKey:(NSString * _Nonnull)key fromObject:(id _Nonnull)targetObject withName:(NSString * _Nullable)exportedKeyName | CoreImage/CIFilterGenerator.h |
Modified -[CIFilterGenerator filter]
| Declaration | Header | |
|---|---|---|
| From | - (CIFilter *)filter | CoreImage/CIFilterGenerator.h |
| To | - (CIFilter * _Nonnull)filter | CoreImage/CIFilterGenerator.h |
Modified +[CIFilterGenerator filterGenerator]
| Declaration | Header | |
|---|---|---|
| From | + (CIFilterGenerator *)filterGenerator | CoreImage/CIFilterGenerator.h |
| To | + (CIFilterGenerator * _Nonnull)filterGenerator | CoreImage/CIFilterGenerator.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIFilterGenerator *)filterGeneratorWithContentsOfURL:(NSURL *)aURL | CoreImage/CIFilterGenerator.h |
| To | + (CIFilterGenerator * _Nullable)filterGeneratorWithContentsOfURL:(NSURL * _Nonnull)aURL | CoreImage/CIFilterGenerator.h |
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithContentsOfURL:(NSURL *)aURL | CoreImage/CIFilterGenerator.h |
| To | - (id _Nullable)initWithContentsOfURL:(NSURL * _Nonnull)aURL | CoreImage/CIFilterGenerator.h |
| Declaration | Header | |
|---|---|---|
| From | - (void)registerFilterName:(NSString *)name | CoreImage/CIFilterGenerator.h |
| To | - (void)registerFilterName:(NSString * _Nonnull)name | CoreImage/CIFilterGenerator.h |
| Declaration | Header | |
|---|---|---|
| From | - (void)removeExportedKey:(NSString *)exportedKeyName | CoreImage/CIFilterGenerator.h |
| To | - (void)removeExportedKey:(NSString * _Nonnull)exportedKeyName | CoreImage/CIFilterGenerator.h |
| Declaration | Header | |
|---|---|---|
| From | - (void)setAttributes:(NSDictionary *)attributes forExportedKey:(NSString *)key | CoreImage/CIFilterGenerator.h |
| To | - (void)setAttributes:(NSDictionary * _Nonnull)attributes forExportedKey:(NSString * _Nonnull)key | CoreImage/CIFilterGenerator.h |
| Declaration | Header | |
|---|---|---|
| From | - (BOOL)writeToURL:(NSURL *)aURL atomically:(BOOL)flag | CoreImage/CIFilterGenerator.h |
| To | - (BOOL)writeToURL:(NSURL * _Nonnull)aURL atomically:(BOOL)flag | CoreImage/CIFilterGenerator.h |
Modified kCIFilterGeneratorExportedKey
| Header | |
|---|---|
| From | CoreImage/CIFilterGenerator.h |
| To | CoreImage/CIFilterGenerator.h |
Modified kCIFilterGeneratorExportedKeyName
| Header | |
|---|---|
| From | CoreImage/CIFilterGenerator.h |
| To | CoreImage/CIFilterGenerator.h |
| Header | |
|---|---|
| From | CoreImage/CIFilterGenerator.h |
| To | CoreImage/CIFilterGenerator.h |
CIFilterShape.h (Removed)
Modified CIFilterShape
| Header | |
|---|---|
| From | CoreImage/CIFilterShape.h |
| To | CoreImage/CIFilterShape.h |
Modified -[CIFilterShape initWithRect:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithRect:(CGRect)r | CoreImage/CIFilterShape.h |
| To | - (instancetype _Nonnull)initWithRect:(CGRect)r | CoreImage/CIFilterShape.h |
Modified -[CIFilterShape insetByX:Y:]
| Declaration | Header | |
|---|---|---|
| From | - (CIFilterShape *)insetByX:(int)dx Y:(int)dy | CoreImage/CIFilterShape.h |
| To | - (CIFilterShape * _Nonnull)insetByX:(int)dx Y:(int)dy | CoreImage/CIFilterShape.h |
Modified -[CIFilterShape intersectWith:]
| Declaration | Header | |
|---|---|---|
| From | - (CIFilterShape *)intersectWith:(CIFilterShape *)s2 | CoreImage/CIFilterShape.h |
| To | - (CIFilterShape * _Nonnull)intersectWith:(CIFilterShape * _Nonnull)s2 | CoreImage/CIFilterShape.h |
Modified -[CIFilterShape intersectWithRect:]
| Declaration | Header | |
|---|---|---|
| From | - (CIFilterShape *)intersectWithRect:(CGRect)r | CoreImage/CIFilterShape.h |
| To | - (CIFilterShape * _Nonnull)intersectWithRect:(CGRect)r | CoreImage/CIFilterShape.h |
Modified +[CIFilterShape shapeWithRect:]
| Declaration | Header | |
|---|---|---|
| From | + (id)shapeWithRect:(CGRect)r | CoreImage/CIFilterShape.h |
| To | + (instancetype _Nonnull)shapeWithRect:(CGRect)r | CoreImage/CIFilterShape.h |
| Declaration | Header | |
|---|---|---|
| From | - (CIFilterShape *)transformBy:(CGAffineTransform)m interior:(BOOL)flag | CoreImage/CIFilterShape.h |
| To | - (CIFilterShape * _Nonnull)transformBy:(CGAffineTransform)m interior:(BOOL)flag | CoreImage/CIFilterShape.h |
Modified -[CIFilterShape unionWith:]
| Declaration | Header | |
|---|---|---|
| From | - (CIFilterShape *)unionWith:(CIFilterShape *)s2 | CoreImage/CIFilterShape.h |
| To | - (CIFilterShape * _Nonnull)unionWith:(CIFilterShape * _Nonnull)s2 | CoreImage/CIFilterShape.h |
Modified -[CIFilterShape unionWithRect:]
| Declaration | Header | |
|---|---|---|
| From | - (CIFilterShape *)unionWithRect:(CGRect)r | CoreImage/CIFilterShape.h |
| To | - (CIFilterShape * _Nonnull)unionWithRect:(CGRect)r | CoreImage/CIFilterShape.h |
CIImage.h (Removed)
Removed -[CIImage autoAdjustmentFilters]
Modified CIImage
| Protocols | Header | |
|---|---|---|
| From | NSCoding, NSCopying | CoreImage/CIImage.h |
| To | NSCopying, NSSecureCoding | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | - (NSArray *)autoAdjustmentFiltersWithOptions:(NSDictionary *)dict | CoreImage/CIImage.h |
| To | - (NSArray<CIFilter *> * _Nonnull)autoAdjustmentFiltersWithOptions:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIImage.h |
Modified CIImage.colorSpace
| Declaration | Header | |
|---|---|---|
| From | - (CGColorSpaceRef)colorSpace | CoreImage/CIImage.h |
| To | @property(atomic, readonly, nullable) CGColorSpaceRef colorSpace | CoreImage/CIImage.h |
Modified CIImage.definition
| Declaration | Header | |
|---|---|---|
| From | - (CIFilterShape *)definition | CoreImage/CIImage.h |
| To | @property(atomic, readonly, nonnull) CIFilterShape *definition | CoreImage/CIImage.h |
Modified +[CIImage emptyImage]
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)emptyImage | CoreImage/CIImage.h |
| To | + (CIImage * _Nonnull)emptyImage | CoreImage/CIImage.h |
Modified CIImage.extent
| Declaration | Header | |
|---|---|---|
| From | - (CGRect)extent | CoreImage/CIImage.h |
| To | @property(readonly, atomic) CGRect extent | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | - (CIImage *)imageByApplyingFilter:(NSString *)filterName withInputParameters:(NSDictionary *)params | CoreImage/CIImage.h |
| To | - (CIImage * _Nonnull)imageByApplyingFilter:(NSString * _Nonnull)filterName withInputParameters:(NSDictionary<NSString *,id> * _Nullable)params | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | - (CIImage *)imageByApplyingOrientation:(int)orientation | CoreImage/CIImage.h |
| To | - (CIImage * _Nonnull)imageByApplyingOrientation:(int)orientation | CoreImage/CIImage.h |
Modified -[CIImage imageByApplyingTransform:]
| Declaration | Header | |
|---|---|---|
| From | - (CIImage *)imageByApplyingTransform:(CGAffineTransform)matrix | CoreImage/CIImage.h |
| To | - (CIImage * _Nonnull)imageByApplyingTransform:(CGAffineTransform)matrix | CoreImage/CIImage.h |
Modified -[CIImage imageByClampingToExtent]
| Declaration | Header | |
|---|---|---|
| From | - (CIImage *)imageByClampingToExtent | CoreImage/CIImage.h |
| To | - (CIImage * _Nonnull)imageByClampingToExtent | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | - (CIImage *)imageByCompositingOverImage:(CIImage *)dest | CoreImage/CIImage.h |
| To | - (CIImage * _Nonnull)imageByCompositingOverImage:(CIImage * _Nonnull)dest | CoreImage/CIImage.h |
Modified -[CIImage imageByCroppingToRect:]
| Declaration | Header | |
|---|---|---|
| From | - (CIImage *)imageByCroppingToRect:(CGRect)r | CoreImage/CIImage.h |
| To | - (CIImage * _Nonnull)imageByCroppingToRect:(CGRect)rect | CoreImage/CIImage.h |
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)imageWithBitmapData:(NSData *)d bytesPerRow:(size_t)bpr size:(CGSize)size format:(CIFormat)f colorSpace:(CGColorSpaceRef)cs | CoreImage/CIImage.h |
| To | + (CIImage * _Nonnull)imageWithBitmapData:(NSData * _Nonnull)data bytesPerRow:(size_t)bytesPerRow size:(CGSize)size format:(CIFormat)format colorSpace:(CGColorSpaceRef _Nullable)colorSpace | CoreImage/CIImage.h |
Modified +[CIImage imageWithCGImage:]
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)imageWithCGImage:(CGImageRef)image | CoreImage/CIImage.h |
| To | + (CIImage * _Nonnull)imageWithCGImage:(CGImageRef _Nonnull)image | CoreImage/CIImage.h |
Modified +[CIImage imageWithCGImage:options:]
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)imageWithCGImage:(CGImageRef)image options:(NSDictionary *)d | CoreImage/CIImage.h |
| To | + (CIImage * _Nonnull)imageWithCGImage:(CGImageRef _Nonnull)image options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIImage.h |
Modified +[CIImage imageWithCGLayer:]
| Declaration | Deprecation | Header | |
|---|---|---|---|
| From | + (CIImage *)imageWithCGLayer:(CGLayerRef)layer | -- | CoreImage/CIImage.h |
| To | + (CIImage * _Nonnull)imageWithCGLayer:(CGLayerRef _Nonnull)layer | OS X 10.11 | CoreImage/CIImage.h |
Modified +[CIImage imageWithCGLayer:options:]
| Declaration | Deprecation | Header | |
|---|---|---|---|
| From | + (CIImage *)imageWithCGLayer:(CGLayerRef)layer options:(NSDictionary *)d | -- | CoreImage/CIImage.h |
| To | + (CIImage * _Nonnull)imageWithCGLayer:(CGLayerRef _Nonnull)layer options:(NSDictionary<NSString *,id> * _Nullable)options | OS X 10.11 | CoreImage/CIImage.h |
Modified +[CIImage imageWithColor:]
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)imageWithColor:(CIColor *)color | CoreImage/CIImage.h |
| To | + (CIImage * _Nonnull)imageWithColor:(CIColor * _Nonnull)color | CoreImage/CIImage.h |
Modified +[CIImage imageWithContentsOfURL:]
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)imageWithContentsOfURL:(NSURL *)url | CoreImage/CIImage.h |
| To | + (CIImage * _Nullable)imageWithContentsOfURL:(NSURL * _Nonnull)url | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)imageWithContentsOfURL:(NSURL *)url options:(NSDictionary *)d | CoreImage/CIImage.h |
| To | + (CIImage * _Nullable)imageWithContentsOfURL:(NSURL * _Nonnull)url options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIImage.h |
Modified +[CIImage imageWithCVImageBuffer:]
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)imageWithCVImageBuffer:(CVImageBufferRef)imageBuffer | CoreImage/CIImage.h |
| To | + (CIImage * _Nonnull)imageWithCVImageBuffer:(CVImageBufferRef _Nonnull)imageBuffer | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)imageWithCVImageBuffer:(CVImageBufferRef)imageBuffer options:(NSDictionary *)dict | CoreImage/CIImage.h |
| To | + (CIImage * _Nonnull)imageWithCVImageBuffer:(CVImageBufferRef _Nonnull)imageBuffer options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIImage.h |
Modified +[CIImage imageWithData:]
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)imageWithData:(NSData *)data | CoreImage/CIImage.h |
| To | + (CIImage * _Nullable)imageWithData:(NSData * _Nonnull)data | CoreImage/CIImage.h |
Modified +[CIImage imageWithData:options:]
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)imageWithData:(NSData *)data options:(NSDictionary *)d | CoreImage/CIImage.h |
| To | + (CIImage * _Nullable)imageWithData:(NSData * _Nonnull)data options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIImage.h |
Modified +[CIImage imageWithIOSurface:]
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)imageWithIOSurface:(IOSurfaceRef)surface | CoreImage/CIImage.h |
| To | + (CIImage * _Nonnull)imageWithIOSurface:(IOSurfaceRef _Nonnull)surface | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)imageWithIOSurface:(IOSurfaceRef)surface options:(NSDictionary *)d | CoreImage/CIImage.h |
| To | + (CIImage * _Nonnull)imageWithIOSurface:(IOSurfaceRef _Nonnull)surface options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)imageWithTexture:(unsigned int)name size:(CGSize)size flipped:(BOOL)flag colorSpace:(CGColorSpaceRef)cs | CoreImage/CIImage.h |
| To | + (CIImage * _Nonnull)imageWithTexture:(unsigned int)name size:(CGSize)size flipped:(BOOL)flipped colorSpace:(CGColorSpaceRef _Nullable)colorSpace | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIImage *)imageWithTexture:(unsigned int)name size:(CGSize)size flipped:(BOOL)flag options:(NSDictionary *)options | CoreImage/CIImage.h |
| To | + (CIImage * _Nonnull)imageWithTexture:(unsigned int)name size:(CGSize)size flipped:(BOOL)flipped options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithBitmapData:(NSData *)d bytesPerRow:(size_t)bpr size:(CGSize)size format:(CIFormat)f colorSpace:(CGColorSpaceRef)c | CoreImage/CIImage.h |
| To | - (instancetype _Nonnull)initWithBitmapData:(NSData * _Nonnull)data bytesPerRow:(size_t)bytesPerRow size:(CGSize)size format:(CIFormat)format colorSpace:(CGColorSpaceRef _Nullable)colorSpace | CoreImage/CIImage.h |
Modified -[CIImage initWithCGImage:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithCGImage:(CGImageRef)image | CoreImage/CIImage.h |
| To | - (instancetype _Nonnull)initWithCGImage:(CGImageRef _Nonnull)image | CoreImage/CIImage.h |
Modified -[CIImage initWithCGImage:options:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithCGImage:(CGImageRef)image options:(NSDictionary *)d | CoreImage/CIImage.h |
| To | - (instancetype _Nonnull)initWithCGImage:(CGImageRef _Nonnull)image options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIImage.h |
Modified -[CIImage initWithCGLayer:]
| Declaration | Deprecation | Header | |
|---|---|---|---|
| From | - (id)initWithCGLayer:(CGLayerRef)layer | -- | CoreImage/CIImage.h |
| To | - (instancetype _Nonnull)initWithCGLayer:(CGLayerRef _Nonnull)layer | OS X 10.11 | CoreImage/CIImage.h |
Modified -[CIImage initWithCGLayer:options:]
| Declaration | Deprecation | Header | |
|---|---|---|---|
| From | - (id)initWithCGLayer:(CGLayerRef)layer options:(NSDictionary *)d | -- | CoreImage/CIImage.h |
| To | - (instancetype _Nonnull)initWithCGLayer:(CGLayerRef _Nonnull)layer options:(NSDictionary<NSString *,id> * _Nullable)options | OS X 10.11 | CoreImage/CIImage.h |
Modified -[CIImage initWithColor:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithColor:(CIColor *)color | CoreImage/CIImage.h |
| To | - (instancetype _Nonnull)initWithColor:(CIColor * _Nonnull)color | CoreImage/CIImage.h |
Modified -[CIImage initWithContentsOfURL:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithContentsOfURL:(NSURL *)url | CoreImage/CIImage.h |
| To | - (instancetype _Nullable)initWithContentsOfURL:(NSURL * _Nonnull)url | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithContentsOfURL:(NSURL *)url options:(NSDictionary *)d | CoreImage/CIImage.h |
| To | - (instancetype _Nullable)initWithContentsOfURL:(NSURL * _Nonnull)url options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIImage.h |
Modified -[CIImage initWithCVImageBuffer:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithCVImageBuffer:(CVImageBufferRef)imageBuffer | CoreImage/CIImage.h |
| To | - (instancetype _Nonnull)initWithCVImageBuffer:(CVImageBufferRef _Nonnull)imageBuffer | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithCVImageBuffer:(CVImageBufferRef)imageBuffer options:(NSDictionary *)dict | CoreImage/CIImage.h |
| To | - (instancetype _Nonnull)initWithCVImageBuffer:(CVImageBufferRef _Nonnull)imageBuffer options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIImage.h |
Modified -[CIImage initWithData:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithData:(NSData *)data | CoreImage/CIImage.h |
| To | - (instancetype _Nullable)initWithData:(NSData * _Nonnull)data | CoreImage/CIImage.h |
Modified -[CIImage initWithData:options:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithData:(NSData *)data options:(NSDictionary *)d | CoreImage/CIImage.h |
| To | - (instancetype _Nullable)initWithData:(NSData * _Nonnull)data options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIImage.h |
Modified -[CIImage initWithIOSurface:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithIOSurface:(IOSurfaceRef)surface | CoreImage/CIImage.h |
| To | - (instancetype _Nonnull)initWithIOSurface:(IOSurfaceRef _Nonnull)surface | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithIOSurface:(IOSurfaceRef)surface options:(NSDictionary *)d | CoreImage/CIImage.h |
| To | - (instancetype _Nonnull)initWithIOSurface:(IOSurfaceRef _Nonnull)surface options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIImage.h |
| Declaration | Deprecation | Header | |
|---|---|---|---|
| From | - (id)initWithIOSurface:(IOSurfaceRef)surface plane:(size_t)plane format:(CIFormat)format options:(NSDictionary *)d | -- | CoreImage/CIImage.h |
| To | - (instancetype _Nonnull)initWithIOSurface:(IOSurfaceRef _Nonnull)surface plane:(size_t)plane format:(CIFormat)format options:(NSDictionary<NSString *,id> * _Nullable)options | OS X 10.11 | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithTexture:(unsigned int)name size:(CGSize)size flipped:(BOOL)flag colorSpace:(CGColorSpaceRef)cs | CoreImage/CIImage.h |
| To | - (instancetype _Nonnull)initWithTexture:(unsigned int)name size:(CGSize)size flipped:(BOOL)flipped colorSpace:(CGColorSpaceRef _Nullable)colorSpace | CoreImage/CIImage.h |
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithTexture:(unsigned int)name size:(CGSize)size flipped:(BOOL)flag options:(NSDictionary *)options | CoreImage/CIImage.h |
| To | - (instancetype _Nonnull)initWithTexture:(unsigned int)name size:(CGSize)size flipped:(BOOL)flipped options:(NSDictionary<NSString *,id> * _Nullable)options | CoreImage/CIImage.h |
Modified CIImage.properties
| Declaration | Header | |
|---|---|---|
| From | - (NSDictionary *)properties | CoreImage/CIImage.h |
| To | @property(atomic, readonly, nonnull) NSDictionary<NSString *,id> *properties | CoreImage/CIImage.h |
Modified CIImage.url
| Declaration | Header | |
|---|---|---|
| From | - (NSURL *)url | CoreImage/CIImage.h |
| To | @property(atomic, readonly, nullable) NSURL *url | CoreImage/CIImage.h |
Modified CIFormat
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
Modified CIImage(AutoAdjustment)
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
Modified kCIFormatARGB8
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
Modified kCIFormatRGBA16
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
Modified kCIFormatRGBAf
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
Modified kCIFormatRGBAh
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
Modified kCIImageAutoAdjustCrop
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
Modified kCIImageAutoAdjustEnhance
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
Modified kCIImageAutoAdjustFeatures
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
Modified kCIImageAutoAdjustLevel
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
Modified kCIImageAutoAdjustRedEye
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
Modified kCIImageColorSpace
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
Modified kCIImageProperties
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
Modified kCIImageTextureFormat
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
Modified kCIImageTextureTarget
| Header | |
|---|---|
| From | CoreImage/CIImage.h |
| To | CoreImage/CIImage.h |
CIImageAccumulator.h (Removed)
Modified CIImageAccumulator
| Header | |
|---|---|
| From | CoreImage/CIImageAccumulator.h |
| To | CoreImage/CIImageAccumulator.h |
Modified -[CIImageAccumulator clear]
| Header | |
|---|---|
| From | CoreImage/CIImageAccumulator.h |
| To | CoreImage/CIImageAccumulator.h |
Modified CIImageAccumulator.extent
| Declaration | Header | |
|---|---|---|
| From | - (CGRect)extent | CoreImage/CIImageAccumulator.h |
| To | @property(readonly) CGRect extent | CoreImage/CIImageAccumulator.h |
Modified CIImageAccumulator.format
| Declaration | Header | |
|---|---|---|
| From | - (CIFormat)format | CoreImage/CIImageAccumulator.h |
| To | @property(readonly) CIFormat format | CoreImage/CIImageAccumulator.h |
Modified -[CIImageAccumulator image]
| Declaration | Header | |
|---|---|---|
| From | - (CIImage *)image | CoreImage/CIImageAccumulator.h |
| To | - (CIImage * _Nonnull)image | CoreImage/CIImageAccumulator.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIImageAccumulator *)imageAccumulatorWithExtent:(CGRect)extent format:(CIFormat)format | CoreImage/CIImageAccumulator.h |
| To | + (instancetype _Nonnull)imageAccumulatorWithExtent:(CGRect)extent format:(CIFormat)format | CoreImage/CIImageAccumulator.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIImageAccumulator *)imageAccumulatorWithExtent:(CGRect)extent format:(CIFormat)format colorSpace:(CGColorSpaceRef)colorSpace | CoreImage/CIImageAccumulator.h |
| To | + (instancetype _Nonnull)imageAccumulatorWithExtent:(CGRect)extent format:(CIFormat)format colorSpace:(CGColorSpaceRef _Nonnull)colorSpace | CoreImage/CIImageAccumulator.h |
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithExtent:(CGRect)extent format:(CIFormat)format | CoreImage/CIImageAccumulator.h |
| To | - (instancetype _Nonnull)initWithExtent:(CGRect)extent format:(CIFormat)format | CoreImage/CIImageAccumulator.h |
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithExtent:(CGRect)extent format:(CIFormat)format colorSpace:(CGColorSpaceRef)colorSpace | CoreImage/CIImageAccumulator.h |
| To | - (instancetype _Nonnull)initWithExtent:(CGRect)extent format:(CIFormat)format colorSpace:(CGColorSpaceRef _Nonnull)colorSpace | CoreImage/CIImageAccumulator.h |
Modified -[CIImageAccumulator setImage:]
| Declaration | Header | |
|---|---|---|
| From | - (void)setImage:(CIImage *)im | CoreImage/CIImageAccumulator.h |
| To | - (void)setImage:(CIImage * _Nonnull)image | CoreImage/CIImageAccumulator.h |
| Declaration | Header | |
|---|---|---|
| From | - (void)setImage:(CIImage *)im dirtyRect:(CGRect)r | CoreImage/CIImageAccumulator.h |
| To | - (void)setImage:(CIImage * _Nonnull)image dirtyRect:(CGRect)dirtyRect | CoreImage/CIImageAccumulator.h |
CIImageProvider.h (Removed)
| Declaration | Introduction | Header | |
|---|---|---|---|
| From | + (CIImage *)imageWithImageProvider:(id)p size:(size_t)width :(size_t)height format:(CIFormat)f colorSpace:(CGColorSpaceRef)cs options:(NSDictionary *)dict | OS X 10.6 | CoreImage/CIImageProvider.h |
| To | + (CIImage * _Nonnull)imageWithImageProvider:(id _Nonnull)p size:(size_t)width :(size_t)height format:(CIFormat)f colorSpace:(CGColorSpaceRef _Nullable)cs options:(NSDictionary<NSString *,id> * _Nullable)options | OS X 10.4 | CoreImage/CIImageProvider.h |
| Declaration | Introduction | Header | |
|---|---|---|---|
| From | - (id)initWithImageProvider:(id)p size:(size_t)width :(size_t)height format:(CIFormat)f colorSpace:(CGColorSpaceRef)cs options:(NSDictionary *)dict | OS X 10.6 | CoreImage/CIImageProvider.h |
| To | - (instancetype _Nonnull)initWithImageProvider:(id _Nonnull)p size:(size_t)width :(size_t)height format:(CIFormat)f colorSpace:(CGColorSpaceRef _Nullable)cs options:(NSDictionary<NSString *,id> * _Nullable)options | OS X 10.4 | CoreImage/CIImageProvider.h |
| Declaration | Header | |
|---|---|---|
| From | - (void)provideImageData:(void *)data bytesPerRow:(size_t)rowbytes origin:(size_t)x :(size_t)y size:(size_t)width :(size_t)height userInfo:(id)info | CoreImage/CIImageProvider.h |
| To | - (void)provideImageData:(void * _Nonnull)data bytesPerRow:(size_t)rowbytes origin:(size_t)x :(size_t)y size:(size_t)width :(size_t)height userInfo:(id _Nullable)info | CoreImage/CIImageProvider.h |
Modified CIImage(CIImageProvider)
| Header | |
|---|---|
| From | CoreImage/CIImageProvider.h |
| To | CoreImage/CIImageProvider.h |
Modified kCIImageProviderTileSize
| Header | |
|---|---|
| From | CoreImage/CIImageProvider.h |
| To | CoreImage/CIImageProvider.h |
Modified kCIImageProviderUserInfo
| Header | |
|---|---|
| From | CoreImage/CIImageProvider.h |
| To | CoreImage/CIImageProvider.h |
Modified NSObject(CIImageProvider)
| Header | |
|---|---|
| From | CoreImage/CIImageProvider.h |
| To | CoreImage/CIImageProvider.h |
CIKernel.h (Removed)
Modified CIKernel
| Header | |
|---|---|
| From | CoreImage/CIKernel.h |
| To | CoreImage/CIKernel.h |
Modified +[CIKernel kernelsWithString:]
| Declaration | Header | |
|---|---|---|
| From | + (NSArray *)kernelsWithString:(NSString *)s | CoreImage/CIKernel.h |
| To | + (NSArray<CIKernel *> * _Nullable)kernelsWithString:(NSString * _Nonnull)string | CoreImage/CIKernel.h |
Modified +[CIKernel kernelWithString:]
| Declaration | Header | |
|---|---|---|
| From | + (CIKernel *)kernelWithString:(NSString *)s | CoreImage/CIKernel.h |
| To | + (instancetype _Nullable)kernelWithString:(NSString * _Nonnull)string | CoreImage/CIKernel.h |
Modified CIKernel.name
| Declaration | Header | |
|---|---|---|
| From | - (NSString *)name | CoreImage/CIKernel.h |
| To | @property(atomic, readonly, nonnull) NSString *name | CoreImage/CIKernel.h |
Modified -[CIKernel setROISelector:]
| Declaration | Header | |
|---|---|---|
| From | - (void)setROISelector:(SEL)aMethod | CoreImage/CIKernel.h |
| To | - (void)setROISelector:(SEL _Nonnull)method | CoreImage/CIKernel.h |
CIPlugIn.h (Removed)
Modified CIPlugIn
| Header | |
|---|---|
| From | CoreImage/CIPlugIn.h |
| To | CoreImage/CIPlugIn.h |
Modified +[CIPlugIn loadAllPlugIns]
| Header | |
|---|---|
| From | CoreImage/CIPlugIn.h |
| To | CoreImage/CIPlugIn.h |
Modified +[CIPlugIn loadNonExecutablePlugIns]
| Header | |
|---|---|
| From | CoreImage/CIPlugIn.h |
| To | CoreImage/CIPlugIn.h |
| Header | |
|---|---|
| From | CoreImage/CIPlugIn.h |
| To | CoreImage/CIPlugIn.h |
| Header | |
|---|---|
| From | CoreImage/CIPlugIn.h |
| To | CoreImage/CIPlugIn.h |
CIPlugInInterface.h (Removed)
Modified CIPlugInRegistration
| Header | |
|---|---|
| From | CoreImage/CIPlugInInterface.h |
| To | CoreImage/CIPlugInInterface.h |
Modified -[CIPlugInRegistration load:]
| Header | |
|---|---|
| From | CoreImage/CIPlugInInterface.h |
| To | CoreImage/CIPlugInInterface.h |
CIRAWFilter.h (Removed)
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified CIFilter(CIRAWFilter)
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIActiveKeys
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputAllowDraftModeKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputBiasKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIFilter.h |
Modified kCIInputBoostKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputBoostShadowAmountKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputColorNoiseReductionAmountKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputDecoderVersionKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputEnableSharpeningKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputIgnoreImageOrientationKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputImageOrientationKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputLinearSpaceFilter
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputNeutralChromaticityXKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputNeutralChromaticityYKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputNeutralLocationKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputNeutralTemperatureKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputNeutralTintKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputNoiseReductionAmountKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIInputScaleFactorKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCIOutputNativeSizeKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
Modified kCISupportedDecoderVersionsKey
| Header | |
|---|---|
| From | CoreImage/CIRAWFilter.h |
| To | CoreImage/CIRAWFilter.h |
CISampler.h (Removed)
Modified CISampler
| Header | |
|---|---|
| From | CoreImage/CISampler.h |
| To | CoreImage/CISampler.h |
Modified CISampler.definition
| Declaration | Header | |
|---|---|---|
| From | - (CIFilterShape *)definition | CoreImage/CISampler.h |
| To | @property(readonly, nonnull) CIFilterShape *definition | CoreImage/CISampler.h |
Modified CISampler.extent
| Declaration | Header | |
|---|---|---|
| From | - (CGRect)extent | CoreImage/CISampler.h |
| To | @property(readonly) CGRect extent | CoreImage/CISampler.h |
Modified -[CISampler initWithImage:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithImage:(CIImage *)im | CoreImage/CISampler.h |
| To | - (instancetype _Nonnull)initWithImage:(CIImage * _Nonnull)im | CoreImage/CISampler.h |
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithImage:(CIImage *)im keysAndValues:(id)key0, ... | CoreImage/CISampler.h |
| To | - (instancetype _Nonnull)initWithImage:(CIImage * _Nonnull)im keysAndValues:(id)key0, ... | CoreImage/CISampler.h |
Modified -[CISampler initWithImage:options:]
| Declaration | Header | Designated Initializer | |
|---|---|---|---|
| From | - (id)initWithImage:(CIImage *)im options:(NSDictionary *)dict | CoreImage/CISampler.h | -- |
| To | - (instancetype _Nonnull)initWithImage:(CIImage * _Nonnull)im options:(NSDictionary * _Nullable)dict | CoreImage/CISampler.h | yes |
Modified +[CISampler samplerWithImage:]
| Declaration | Header | |
|---|---|---|
| From | + (CISampler *)samplerWithImage:(CIImage *)im | CoreImage/CISampler.h |
| To | + (instancetype _Nonnull)samplerWithImage:(CIImage * _Nonnull)im | CoreImage/CISampler.h |
| Declaration | Header | |
|---|---|---|
| From | + (CISampler *)samplerWithImage:(CIImage *)im keysAndValues:(id)key0, ... | CoreImage/CISampler.h |
| To | + (instancetype _Nonnull)samplerWithImage:(CIImage * _Nonnull)im keysAndValues:(id)key0, ... | CoreImage/CISampler.h |
| Declaration | Header | |
|---|---|---|
| From | + (CISampler *)samplerWithImage:(CIImage *)im options:(NSDictionary *)dict | CoreImage/CISampler.h |
| To | + (instancetype _Nonnull)samplerWithImage:(CIImage * _Nonnull)im options:(NSDictionary * _Nullable)dict | CoreImage/CISampler.h |
Modified kCISamplerAffineMatrix
| Header | |
|---|---|
| From | CoreImage/CISampler.h |
| To | CoreImage/CISampler.h |
Modified kCISamplerColorSpace
| Header | |
|---|---|
| From | CoreImage/CISampler.h |
| To | CoreImage/CISampler.h |
Modified kCISamplerFilterLinear
| Header | |
|---|---|
| From | CoreImage/CISampler.h |
| To | CoreImage/CISampler.h |
Modified kCISamplerFilterMode
| Header | |
|---|---|
| From | CoreImage/CISampler.h |
| To | CoreImage/CISampler.h |
Modified kCISamplerFilterNearest
| Header | |
|---|---|
| From | CoreImage/CISampler.h |
| To | CoreImage/CISampler.h |
Modified kCISamplerWrapBlack
| Header | |
|---|---|
| From | CoreImage/CISampler.h |
| To | CoreImage/CISampler.h |
Modified kCISamplerWrapClamp
| Header | |
|---|---|
| From | CoreImage/CISampler.h |
| To | CoreImage/CISampler.h |
Modified kCISamplerWrapMode
| Header | |
|---|---|
| From | CoreImage/CISampler.h |
| To | CoreImage/CISampler.h |
CIVector.h (Removed)
Modified CIVector
| Protocols | Header | |
|---|---|---|
| From | NSCoding, NSCopying | CoreImage/CIVector.h |
| To | NSCopying, NSSecureCoding | CoreImage/CIVector.h |
Modified CIVector.CGAffineTransformValue
| Declaration | Header | |
|---|---|---|
| From | - (CGAffineTransform)CGAffineTransformValue | CoreImage/CIVector.h |
| To | @property(readonly) CGAffineTransform CGAffineTransformValue | CoreImage/CIVector.h |
Modified CIVector.CGPointValue
| Declaration | Header | |
|---|---|---|
| From | - (CGPoint)CGPointValue | CoreImage/CIVector.h |
| To | @property(readonly) CGPoint CGPointValue | CoreImage/CIVector.h |
Modified CIVector.CGRectValue
| Declaration | Header | |
|---|---|---|
| From | - (CGRect)CGRectValue | CoreImage/CIVector.h |
| To | @property(readonly) CGRect CGRectValue | CoreImage/CIVector.h |
Modified CIVector.count
| Declaration | Header | |
|---|---|---|
| From | - (size_t)count | CoreImage/CIVector.h |
| To | @property(readonly) size_t count | CoreImage/CIVector.h |
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithCGAffineTransform:(CGAffineTransform)r | CoreImage/CIVector.h |
| To | - (instancetype _Nonnull)initWithCGAffineTransform:(CGAffineTransform)r | CoreImage/CIVector.h |
Modified -[CIVector initWithCGPoint:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithCGPoint:(CGPoint)p | CoreImage/CIVector.h |
| To | - (instancetype _Nonnull)initWithCGPoint:(CGPoint)p | CoreImage/CIVector.h |
Modified -[CIVector initWithCGRect:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithCGRect:(CGRect)r | CoreImage/CIVector.h |
| To | - (instancetype _Nonnull)initWithCGRect:(CGRect)r | CoreImage/CIVector.h |
Modified -[CIVector initWithString:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithString:(NSString *)representation | CoreImage/CIVector.h |
| To | - (instancetype _Nonnull)initWithString:(NSString * _Nonnull)representation | CoreImage/CIVector.h |
Modified -[CIVector initWithValues:count:]
| Declaration | Header | Designated Initializer | |
|---|---|---|---|
| From | - (id)initWithValues:(const CGFloat *)values count:(size_t)count | CoreImage/CIVector.h | -- |
| To | - (instancetype _Nonnull)initWithValues:(const CGFloat * _Nonnull)values count:(size_t)count | CoreImage/CIVector.h | yes |
Modified -[CIVector initWithX:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithX:(CGFloat)x | CoreImage/CIVector.h |
| To | - (instancetype _Nonnull)initWithX:(CGFloat)x | CoreImage/CIVector.h |
Modified -[CIVector initWithX:Y:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithX:(CGFloat)x Y:(CGFloat)y | CoreImage/CIVector.h |
| To | - (instancetype _Nonnull)initWithX:(CGFloat)x Y:(CGFloat)y | CoreImage/CIVector.h |
Modified -[CIVector initWithX:Y:Z:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithX:(CGFloat)x Y:(CGFloat)y Z:(CGFloat)z | CoreImage/CIVector.h |
| To | - (instancetype _Nonnull)initWithX:(CGFloat)x Y:(CGFloat)y Z:(CGFloat)z | CoreImage/CIVector.h |
Modified -[CIVector initWithX:Y:Z:W:]
| Declaration | Header | |
|---|---|---|
| From | - (id)initWithX:(CGFloat)x Y:(CGFloat)y Z:(CGFloat)z W:(CGFloat)w | CoreImage/CIVector.h |
| To | - (instancetype _Nonnull)initWithX:(CGFloat)x Y:(CGFloat)y Z:(CGFloat)z W:(CGFloat)w | CoreImage/CIVector.h |
Modified CIVector.stringRepresentation
| Declaration | Header | |
|---|---|---|
| From | - (NSString *)stringRepresentation | CoreImage/CIVector.h |
| To | @property(readonly, nonnull) NSString *stringRepresentation | CoreImage/CIVector.h |
Modified -[CIVector valueAtIndex:]
| Header | |
|---|---|
| From | CoreImage/CIVector.h |
| To | CoreImage/CIVector.h |
| Declaration | Header | |
|---|---|---|
| From | + (CIVector *)vectorWithCGAffineTransform:(CGAffineTransform)t | CoreImage/CIVector.h |
| To | + (instancetype _Nonnull)vectorWithCGAffineTransform:(CGAffineTransform)t | CoreImage/CIVector.h |
Modified +[CIVector vectorWithCGPoint:]
| Declaration | Header | |
|---|---|---|
| From | + (CIVector *)vectorWithCGPoint:(CGPoint)p | CoreImage/CIVector.h |
| To | + (instancetype _Nonnull)vectorWithCGPoint:(CGPoint)p | CoreImage/CIVector.h |
Modified +[CIVector vectorWithCGRect:]
| Declaration | Header | |
|---|---|---|
| From | + (CIVector *)vectorWithCGRect:(CGRect)r | CoreImage/CIVector.h |
| To | + (instancetype _Nonnull)vectorWithCGRect:(CGRect)r | CoreImage/CIVector.h |
Modified +[CIVector vectorWithString:]
| Declaration | Header | |
|---|---|---|
| From | + (CIVector *)vectorWithString:(NSString *)representation | CoreImage/CIVector.h |
| To | + (instancetype _Nonnull)vectorWithString:(NSString * _Nonnull)representation | CoreImage/CIVector.h |
Modified +[CIVector vectorWithValues:count:]
| Declaration | Header | |
|---|---|---|
| From | + (CIVector *)vectorWithValues:(const CGFloat *)values count:(size_t)count | CoreImage/CIVector.h |
| To | + (instancetype _Nonnull)vectorWithValues:(const CGFloat * _Nonnull)values count:(size_t)count | CoreImage/CIVector.h |
Modified +[CIVector vectorWithX:]
| Declaration | Header | |
|---|---|---|
| From | + (CIVector *)vectorWithX:(CGFloat)x | CoreImage/CIVector.h |
| To | + (instancetype _Nonnull)vectorWithX:(CGFloat)x | CoreImage/CIVector.h |
Modified +[CIVector vectorWithX:Y:]
| Declaration | Header | |
|---|---|---|
| From | + (CIVector *)vectorWithX:(CGFloat)x Y:(CGFloat)y | CoreImage/CIVector.h |
| To | + (instancetype _Nonnull)vectorWithX:(CGFloat)x Y:(CGFloat)y | CoreImage/CIVector.h |
Modified +[CIVector vectorWithX:Y:Z:]
| Declaration | Header | |
|---|---|---|
| From | + (CIVector *)vectorWithX:(CGFloat)x Y:(CGFloat)y Z:(CGFloat)z | CoreImage/CIVector.h |
| To | + (instancetype _Nonnull)vectorWithX:(CGFloat)x Y:(CGFloat)y Z:(CGFloat)z | CoreImage/CIVector.h |
Modified +[CIVector vectorWithX:Y:Z:W:]
| Declaration | Header | |
|---|---|---|
| From | + (CIVector *)vectorWithX:(CGFloat)x Y:(CGFloat)y Z:(CGFloat)z W:(CGFloat)w | CoreImage/CIVector.h |
| To | + (instancetype _Nonnull)vectorWithX:(CGFloat)x Y:(CGFloat)y Z:(CGFloat)z W:(CGFloat)w | CoreImage/CIVector.h |
Modified CIVector.W
| Declaration | Header | |
|---|---|---|
| From | - (CGFloat)W | CoreImage/CIVector.h |
| To | @property(readonly) CGFloat W | CoreImage/CIVector.h |
Modified CIVector.X
| Declaration | Header | |
|---|---|---|
| From | - (CGFloat)X | CoreImage/CIVector.h |
| To | @property(readonly) CGFloat X | CoreImage/CIVector.h |
Modified CIVector.Y
| Declaration | Header | |
|---|---|---|
| From | - (CGFloat)Y | CoreImage/CIVector.h |
| To | @property(readonly) CGFloat Y | CoreImage/CIVector.h |
Modified CIVector.Z
| Declaration | Header | |
|---|---|---|
| From | - (CGFloat)Z | CoreImage/CIVector.h |
| To | @property(readonly) CGFloat Z | CoreImage/CIVector.h |