I got this working and wanted to end the rumor (which I was perpetuating) that you can't have a UIPageControl with a UITabBar.
I initially based my scrolling using Apple's PageControl sample (
https://developer.apple.com/library/...ion/Intro.html). That sample uses the AppDelegate to manage the scrolling. I must have made a mistake moving the code from the AppDelegate to a new UIViewController class, because I could never get the page control to display.
Later, I found this simple tutorial (
David Janes' Code Weblog UIPageControl + UIScrollView) which shows how to use a UIPageControl and UIScrollView, but it handles the messages in a UIViewController. I dropped the tutorial’s ScrollingViewControl.h, .m, and .xib files in my project, routed my UITabBar to it, and instantly had a scrolling view with a tab bar and a page control indicator.
I've spent plenty of hours since getting things positioned, replacing the sample's images with views that will scroll, etc, but the bottom line is that you can definitely have a UIPageControl and a UITabBar (and a UINavigationController, FWIW) at the same time.