SOLVED: Check below for the solution to my problem.
Hey SO,
I
SWIFT
I was having the same issue because of a nav bar and a tab bar. To fix, place the following code in your loadView() or wherever you call your activity indicator to begin animating:
let navigationBarHeight = self.navigationController?.navigationBar.frame.height
let tabBarHeight = super.tabBarController!.tabBar.frame.height
YourActivityIndicator.center = CGPointMake(self.view.frame.size.width / 2.0, (self.view.frame.size.height - navigationBarHeight! - tabBarHeight) / 2.0)