I am having trouble setting a SKSpriteNode from a UIImage. I am using a bridge on the UIImage, converting the image to an SKTexture, and then creating a new SKSpriteNode with that SKTexture, but my code keeps crashing with the following alert "Thread 1: EXC_BAD_ACCESS (code=1, address=0x0)"
CGImageRef textureImage = (__bridge CGImageRef)(theUIImage);
SKTexture *heroTexture = [SKTexture textureWithCGImage:textureImage];
SKSpriteNode *hero = [SKSpriteNode spriteNodeWithTexture:heroTexture size:CGSizeMake(64, 64)];
Instead of bridging the UIImage to CGImageRef, you should use:
If your image is not nil, it should work.
Also, you could try:
A little tip; always check for "nullity".