使用addSubView将视图添加到另一个视图后调整视图大小

时间:2015-10-29 14:21:32

标签: ios objective-c frame

我有一个名为painView的视图,之后添加大小为(40,40) 我希望在调整大小(20,20)时为其设置动画,但即使没有动画,添加它后也不会改变它的大小,只有它的位置,我没有使用自动布局。 。

newdf <- rbind(df1, df2)
newdf <- newdf[duplicated(newdf) == FALSE, ]

1 个答案:

答案 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.