我有imageView
,我想在imageView
自动调整后获取x,y,宽度和高度。每次都返回原始帧。
我的imageView
位于tableView
的自定义单元格中,这些行无法正常工作。
-(void)viewDidLayoutSubviews{
GameCell *cell=[self.tableView dequeueReusableCellWithIdentifier:@"gameCell"];
frameImg1=cell.image1.frame;
frameImg2=cell.image1.bounds;
}
答案 0 :(得分:0)
请在自动调整后使用-(void)viewDidAppear
获取帧大小。