UIImage* test = [UIImage imageNamed:@"test.png"];
self.image_in_controller = test;
Later in the code when image_in_controller is used, I get EXC_BAD_ACCESS.
I set a break point around the time of the assignment. The variable test is getting set just fine.. after the assignment to selfimage_in_controller, test is still okay, but image_in_controller points to 0x0 (not nil).
If I run the same code in the simulator it works fine (self.image_in_controller has a valid point address).
Any ideas?