码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发技巧——Autolayout动画

时间:2015-04-17 01:05:37      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

 

 

 

使用Autolayout时需要在动画的代码前面后面添加

layoutIfNeeded方法

Animation

AutoLayout也可以配合传统的animation方法,整体代码结构如下。

   1:  [self.view layoutIfNeeded]; 
   2:  [UIView animateWithDuration:0.3f 
   3:                   animations:^{ 
   4:                      //... update constraints    
   5:                     [self.view layoutIfNeeded]; 
   6:                   }]; 

 

 

x

iOS开发技巧——Autolayout动画

标签:

原文地址:http://www.cnblogs.com/zeyang/p/4433751.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!