我的 UiTableViewController 的 ViewDidLoad 中有以下代码:
UIImage *noImage = [UIImage imageWithContentsOfFile:pathOfNoImageFile];
UIImageView *imageview = [[UIImageView alloc] initWithImage:noImage];
[imageview setContentMode:UIViewContentModeScaleAspectFit];
imageview.frame = workingFrame;
[self.scrollview addSubview:imageview];
workingFrame.origin.x = workingFrame.origin.x + workingFrame.size.width;
[self.scrollview setPagingEnabled:YES];
[self.scrollview setContentSize:
CGSizeMake(workingFrame.origin.x,workingFrame.size.height)];
因此,我只能看到部分图像并附上了屏幕截图。
我能做些什么来解决它?我已经谷歌搜索并查看了几个 Stack Overflow 问题,但无法让它工作。请建议。我在 uitableviewcell 中有一个滚动视图。我需要将图像垂直居中。