Looks like there are some leaks in some of the STV code. Using the static analyzer -
Example:
SCTableViewCell.m line 2970 (popover is never released)
if([SCHelper is_iPad])
{
UIPopoverController *popover = [[UIPopoverController alloc]
initWithContentViewController:self.imagePickerController];
[popover presentPopoverFromRect:self.frame inView:self.ownerTableViewModel.viewController.view
permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
}
There are 6 analyzer warnings all together.