var actInd : UIActivityIndicatorView = UIActivityIndicatorView(frame: CGRectMake(0,0, 50, 50)) as UIActivityIndicatorView
actInd.center = self.view.center
创建了一个indicator 通过 self.view.center 可以让它在当期视图中的x,y轴居中,现在要想在y轴上向上移动一定的距离,应该咋写啊。
actInd.center = self.view.center
创建了一个indicator 通过 self.view.center 可以让它在当期视图中的x,y轴居中,现在要想在y轴上向上移动一定的距离,应该咋写啊。