0
在我看來,我有幾個子視圖。這是UIImageView。驗證具有座標的像素(iOS)
每個UIImageView都包含帶有alpha通道的圖像。
這是一個圖像:
我使用下面,用於檢測我在位置視圖觸摸此方法:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [[event allTouches] anyObject];
CGPoint touchLocation = [touch locationInView:self.view];
NSArray *views = [self.view subviews];
for (UIView *v in views) {
if([v isKindOfClass:[Piece class]]){
if (CGRectContainsPoint(v.frame, touchLocation) && ((Piece *)v).snapped == FALSE) {
UITouch* touchInPiece = [touches anyObject];
CGPoint point = [touchInPiece locationInView:(Piece *)v];
BOOL solidColor = [self verifyAlphaPixelImage:(Piece *)v atX:point.x atY:point.y];
if (solidColor) {
dragging = YES;
oldX = touchLocation.x;
oldY = touchLocation.y;
piece = (Piece *)v;
[self.view bringSubviewToFront:piece];
break;
}
}
}
}
}
,並且此方法對於驗證阿爾法像素
- (BOOL)verifyAlphaPixelImage:(Piece *)image atX:(int)x atY:(int)y{
CGImageRef imageRef = [image.image CGImage];
NSUInteger width = CGImageGetWidth(imageRef);
NSUInteger height = CGImageGetHeight(imageRef);
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
unsigned char *rawData = malloc(height * width * 4);
NSUInteger bytesPerPixel = 4;
NSUInteger bytesPerRow = bytesPerPixel * width;
NSUInteger bitsPerComponent = 8;
CGContextRef context = CGBitmapContextCreate(rawData, width, height,
bitsPerComponent, bytesPerRow, colorSpace,
kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
CGColorSpaceRelease(colorSpace);
CGContextDrawImage(context, CGRectMake(0, 0, width, height), imageRef);
CGContextRelease(context);
// Now your rawData contains the image data in the RGBA8888 pixel format.
int byteIndex = (bytesPerRow * y) + x * bytesPerPixel;
// CGFloat red = (rawData[byteIndex] ) ;
// CGFloat green = (rawData[byteIndex + 1]) ;
// CGFloat blue = (rawData[byteIndex + 2]) ;
CGFloat alpha = (rawData[byteIndex + 3]) ;
NSLog(@"%f", alpha);
free(rawData);
if(alpha==255.0) return NO;
else return YES;
}
如果創建alpha像素我需要觸摸UIImageView下面的其他UIImageView,我之前已經使用了tapp。
例如,如果我已經堆疊的UIImageView和我觸及第一:
現在我應該驗證第一的UIImageView
如果我觸碰上阿爾法像素 - >我應該移動到下一個的UIImageView與該座標和驗證它也適用於alpha像素。
如果第三,第四或第五沒有與我的座標alpha像素,我應該選擇這個UIImageView。
現在我驗證我的像素 - 但我的方法返回錯誤的值。
謝謝,你的回答真的幫了我很大的忙! – 2012-04-16 22:54:21