I've searched far and wide across the internet, but to no avail. Basically, I have a viewController
that is presenting a UIImagePickerController
every time it appears (in viewWillAppear
). I'm using a custom camera
overlay (xib
file) for the UIImagePickerController
. Everything is working fine, I can get the camera
overlay to appear and I can see all of my buttons
on the camera
overlay, but none of the buttons
are working/responding to any touch events
. I've connected the buttons
to the viewController
using
-(IBAction)buttonName:(id)sender {
NSLog(@"This button doesn't work"); //to test the button
}
but for some reason I'm encountering this problem. Any thoughts?