Hello everyone!
I have a big problem (I think!)
I begin a tabBar application. In appDelegate I put a button in the middle of the tabbar. Ok! this works fine!
When I touch this button, I open a modal view:
Code:
RefundViewController *controller = [[RefundViewController alloc] initWithNibName:@"RefundViewController" bundle:nil];
[self.tabBarController presentModalViewController:controller animated:YES];
[controller release];
My problem... In this View I have a UITableView w/ self delegate, this Table has a CustomCell, this custom cell has another UITableView, but I have to add another file to delegate this TableView.
Everything works fine! but HOW CAN I GET THE TOUCH ON THE CELL ????
Yeah, I have the method
Code:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
I have to send an information to the first View (refundViewController). How can I do that?
Thanks!