본문 바로가기

프로그래밍/iOS

[ios]Category is implementing a method which will also be implemented by its primary class

stackOverflow에서는

 

@interface UIImage ()

- (CGContextRef) createARGBBitmapContextFromImage:(CGImageRef) imageRef;

- (UIImage *) createImageFromContext:(CGContextRef) cgctx WithSize:(CGSize) size;

- (UIImage *) createImageFromPixels:(unsigned char*)outData Length:(NSUInteger)length;

-(unsigned char*) convolveRaw:(NSArray *) kernel InData:(unsigned char *)inData OuData:(unsigned char*)outData Height:(uint)_height Width:(uint)_width;

@end


카테고리 안에 함수선언들을 해주면 위 경고가 사라진다고 하였으나..


X-Code5.02쓰고 있는 나는 위에 선언문들을 선언하지 않아야 경고가 사라진다...

 

ios7와서 바뀐건지 뭔지..