我有一个名为painView的视图,之后添加大小为(40,40) 我希望在调整大小(20,20)时为其设置动画,但即使没有动画,添加它后也不会改变它的大小,只有它的位置,我没有使用自动布局。 。
newdf <- rbind(df1, df2)
newdf <- newdf[duplicated(newdf) == FALSE, ]
答案 0 :(得分:1)
Your paintView has changed, but the imageView(imgView) did not. Set clipsToBounds of paintView to YES to check it. So when you change frame of paintView, change frame of imgView too.