How to center UIActivityIndicator?

前端 未结 5 1796
谎友^
谎友^ 2021-01-05 14:28

SOLVED: Check below for the solution to my problem.

\"enter

Hey SO,

I

5条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-05 15:31

    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)
    

提交回复
热议问题