我在美国待了5年 没觉得老师发音怎么了 很多美国人自己说话都会带口音 别拿你们那点浅薄的功夫在这边评论比你们强的人 丢人知道吗 顺便感谢老师的课程
2016-08-24
如果使用 AutoLayout,那么在 viewDidAppear() 方法中必须使用下面的代码才能达到相同的效果:
dispatch_async(dispatch_get_main_queue()) {
UIView.animateWithDuration(1) {
self.blueSquare.center.x = self.view.bounds.width - self.blueSquare.center.x
}
}
dispatch_async(dispatch_get_main_queue()) {
UIView.animateWithDuration(1) {
self.blueSquare.center.x = self.view.bounds.width - self.blueSquare.center.x
}
}
2016-07-13