[UIView animateWithDuration:AnimationTime animations:^{
【self show】;
} completion:^(BOOLfinished) {
}];
-(void)show{
self.GroupChatTableView.frame = 0 0 100 200;
[UIView animateWithDuration:AnimationTime animations:^{
self.GroupChatTableView.frame = 0 0 200 200;
} completion:^(BOOLfinished) {
}];
}
show方法中的 self.GroupChatTableView.frame = 0 0 100 200; 是无效的 代码块中的动画只看结果
网友评论