When I look in the console I get this message
2010-09-18 17:04:05.284 Wasted Time[8998:207] *** Assertion failure in -[UIActionSheet showInView:], /SourceCache/UI
do like this:
[self performSelectorOnMainThread:@selector(choosePhoto) withObject:nil waitUntilDone:NO];
-(void)choosePhoto
{
UIActionSheet* actionSheet = [[UIActionSheet alloc] initWithTitle:@""
delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil
otherButtonTitles:@"Take Photo", @"Choose from gallery", nil];
actionSheet.actionSheetStyle = UIActionSheetStyleBlackOpaque;
actionSheet.tag = 1;
[actionSheet showInView:self.view];
[actionSheet release];
}
Worked for me