I need to present a UIPopover from dynamically generated UITextFields in a UITableView. They are all tagged uniquely but when I try and use this code the popover just show up in the upper left hand corner:
[self.numbersPopover presentPopoverFromRect:[self.childSkusTable viewWithTag:aTag].frame inView:self.view permittedArrowDirections:UIPopoverArrowDirectionLeft animated:YES];
EDIT:
I see I am finding the frame for that tagged item but it is relavant to it's parent cell, in this case the frame of that tagged items is 0,0 for the x,y. How do I get it's position in the main window view?