[UIVIEw animateWithDuration:0.5 delay:0.0f options:UIVIEwAnimationoptionTransitionNone animations:^{ [self.about increaseHeightFromtopleft:deltaHeight]; [self.scrollVIEw increaseContentHeight];} completion:nil];- (voID)increaseHeightFromtopleft:(CGfloat ) increased { CGRect newFrame = CGRectMake(self.originX,self.originY,self.frameWIDth,self.frameHeight + increased); self.frame = newFrame;}
调用标签,您可以在此处看到动画视频. https://www.youtube.com/watch?v=DcqktIZ9moY&feature=youtu.be
解决方法 面临同样的问题!尝试在代码中将标签’contentMode设置为top:
label.contentMode = UIVIEwContentModetop;总结
以上是内存溢出为你收集整理的ios – UILabel改变高度,动画从中心扩展全部内容,希望文章能够帮你解决ios – UILabel改变高度,动画从中心扩展所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)