我在UITableViewController
内UIScrollView
作为标题UIView
。
UIScrollView
用于显示图片的幻灯片:
UITableView
-UITableViewHeaderView
-UIView
-UIScrollView
-UIImageView
...
-UIPageControl
每张图片都有一个带有标题和说明的子视图:
UIImageView
-UIView
-UILabel
-UILabel
当我需要更新tableView
时,会调用委托方法,该方法会在tableView
中重新加载数据并调用addImages
方法:
- (void)eventsUpdated
{
if ([self respondsToSelector:@selector(setRefreshControl:)])
[self.refreshControl endRefreshing];
[self.tableView reloadData];
[self addImages];
}
以下是我添加图片的方式:
- (void)addImages
[self.scrollView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
for (int i = 0; i < images.count; i++) {
CGRect frame;
frame.origin.x = self.scrollView.frame.size.width * i;
frame.origin.y = 0;
frame.size = self.scrollView.frame.size;
UIImageView *subview = [self createImageViewForEvent:[images objectAtIndex:i] inFrame:frame];
subview.frame = frame;
[self.scrollView addSubview:subview];
}
self.scrollView.contentSize = CGSizeMake(scrollView.frame.size.width*images.count, scrollView.frame.size.height);
pageControll.currentPage = 0;
pageControll.numberOfPages = images.count;
}
- (UIImageView *)createImageViewForEvent:(Event *)event inFrame:(CGRect)frame
{
UIImage *image;
NSString *imageName = [event.imageName lastPathComponent];
NSString *bundleFilePath = [[NSBundle mainBundle] pathForResource:[imageName stringByDeletingPathExtension] ofType:[imageName pathExtension]];
image = [UIImage imageWithContentsOfFile:bundleFilePath];
UIImageView *output = [[UIImageView alloc] initWithImage:image];
output.frame = frame;
UIView *descriptionView = [[UIView alloc] initWithFrame:CGRectMake(0, frame.size.height*0.7, frame.size.width, frame.size.height*0.3)];
descriptionView.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.5];
descriptionView.alpha = 1.0;
UILabel *header = [[UILabel alloc] initWithFrame:CGRectMake(10, 5, frame.size.width-20, 12)];
header.textColor = [UIColor colorWithRed:210/256.0 green:217/256.0 blue:231/256.0 alpha:1.0];
header.font = [UIFont fontWithName:@"Helvetica" size:17];
header.backgroundColor = [UIColor clearColor];
header.lineBreakMode = UILineBreakModeTailTruncation;
header.numberOfLines = 1;
UILabel *description = [[UILabel alloc] initWithFrame:CGRectMake(10, 22, frame.size.width-20, 28)];
description.textColor = [UIColor colorWithRed:255/256.0 green:255/256.0 blue:255/256.0 alpha:1.0];
description.font = [UIFont fontWithName:@"Helvetica" size:12];
description.backgroundColor = [UIColor clearColor];
description.lineBreakMode = UILineBreakModeTailTruncation;
description.numberOfLines = 2;
header.text = event.title;
[descriptionView addSubview:header];
description.text = event.shortDesription;
[descriptionView addSubview:description];
[output addSubview:descriptionView];
return output;
}
首次发布后,一切正常,但如果我尝试重新加载tableView
并再次致电addImages
,则所有UILabel都会消失,只有UIImageView
和UIView
可见。
UPD:
我注意到的是,我的UILabel在一段时间后出现,大约在30秒后出现。
之前我从未经历过类似的事情UPD 2:
我重新加载tableView
和scrollview
后,scrollView's
内容不会立即更新,只有在我开始滚动后
答案 0 :(得分:5)
我从您发布的代码中复制了一个示例项目,但未在标签或任何其他组件上发现任何令人耳目一新的问题。这使我认为问题不在你发布的代码中,而是在其他地方。
通常当你看到这样的延迟时,是因为一些不应该并行运行的代码并行运行。
我建议您查看拨打eventsUpdated
的方式和时间。您必须确保在主线程上执行调用,并且只有在您的事件数组完成更新后才会执行。要检查这一点,您可以在eventsUpdated
中添加以下行:
NSLog(@"Current: %@, main: %@", [NSThread currentThread], [NSThread mainThread]);
请发布日志! : - )
我建议您在调用eventsUpdated
的方法中添加代码,因为它也可以提供帮助。
答案 1 :(得分:0)
首先,永远不要做像
这样的事情 [scrollView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
滚动视图有一些内部视图(例如滚动指示符),所以你要删除它们,这可能会解除它们并在以后的任何时候引起奇怪的崩溃。
至于你的问题 - 尝试调用你的UIImageView的bringSubviewToFront:让你的标签在其他地方面前