11 lines
206 B
Objective-C
11 lines
206 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface UIImage (RGBAAtPixel)
|
|
|
|
- (BOOL)rgbaAtPixel:(CGPoint)point
|
|
red:(CGFloat*)red
|
|
green:(CGFloat*)green
|
|
blue:(CGFloat*)blue;
|
|
|
|
@end
|