【发布时间】:2015-02-25 09:25:41
【问题描述】:
CGRect frame = bottomView.frame;
frame.origin.y = [UIScreen mainScreen].bounds.size.height + 88;
bottomView.frame = frame;
NSLog(@"bottom view frame is %f", bottomView.frame.origin.y);
[UIView commitAnimations];
[self bottomButtonsCustomLoad];
我也有线
frame.origin.y = [UIScreen mainScreen].bounds.size.height + 88;
嵌套在“If”语句和两个日志 579 中,它应该显示视图,但在 if 语句中的那个 uiview 不可见,它记录 579 但不存在它似乎在窗口下方,这是它在动画之前开始
【问题讨论】:
标签: ios objective-c xcode animation uiview