这是我的ViewController:
- (void)viewDidLoad
{
[super viewDidLoad];
self.imageView.image = self.image;
self.scrollView.contentSize = self.imageView.image.size;
self.imageView.frame = CGRectMake(0, 0, self.imageView.image.size.width, self.imageView.image.size.height);
self.title = [self.photo objectForKey:FLICKR_PHOTO_TITLE];
self.scrollView.delegate = self;
}
- (void)viewDidAppear:(BOOL)animated
{
[self.scrollView flashScrollIndicators];
self.scrollView.showsHorizontalScrollIndicator = YES;
}
但它没有显示任何内容。 我已经在这里检查了几个相同的问题并尝试了所有可能的解决方案,但都没有效果。
答案 0 :(得分:1)
我知道这是一个老线程,但我遇到了它......
水平或垂直滚动视图指示器仅在内容大于滚动视图时显示。因此,如果您的完整图像已经显示,则没有指示符。