How to Change the height of UIPageControl?
Agree With Mike
You can change your UIPageControl height using its frame..
ex
pgControl.frame = CGRectMake(X , Y , Width , Height that you want);
Not using interface builder, but you can specify a new frame in code:
pageControl.frame = CGRectMake(x, y, width, height);
This is how you do that
Change the width to something strange, 153
Now open the xib as source.
Find 153
Nearby you should see number 36. Change that to the height you want.
Tada...... :)