2017-04-06 40 views

回答

1

你必須創建正確的類在你活動的指標,所以應該在所有的函數訪問你的類中

var activityIndicator = UIActivityIndicatorView() 

裏面viewDidLoad中

activityIndicator = UIActivityIndicatorView(frame: CGRect(x: 0, y: 0, width: 50, height: 50)) 
// set the activityIndicator.hidesWhenStopeped to true will hides when you call the stop on activityIndicator 
activityIndicator.hidesWhenStopped = true 
activityIndicator.activityIndicatorViewStyle = .gray 
view.addSubview(activityIndicator) 

您應該已經塊或代表通知你,下載或解析數據已經完成,在那裏停止活動指示器,例如

activityIndicator.stopAnimating() 

這將停止動畫,因爲我們已經設置了隱藏當它被設置爲true時它也會隱藏它

+0

釘住它!最後,它的工作!!!!!非常感謝! –

+0

它的空地工作 –

+0

Khalid Afridi ----->把你的知識作爲一個很好的領導,你想幫助我與這個請... ... http://stackoverflow.com/questions/43332596/how-can-我在谷歌地圖顯示最近的地方我的位置 –

相關問題