I have difficulty adding a subview (UIView) from within the viewDidLoad method of a UITableViewController
This works:
[self.view addSubview:self.prog
try: [self.view bringSubviewToFront:self.progView];
[self.view bringSubviewToFront:self.progView];
Or you can try to add self.progView to your table's view.
self.progView