我正在尝试异步加载视图。问题是要加载的视图的框架取决于异步加载的数据。换句话说,有一些很长的计算决定了在哪里实际显示 UIView。
我知道尝试在线程中实际显示 UIView 时会出现问题,并且您应该始终将它们加载回主线程中,所以这是我一直在尝试的代码:
asyncQueue = [[NSOperationQueue alloc] init];
[asyncQueue addOperationWithBlock:^{
// Do work to load the UIViews and figure out where they should be
UIButton *test = [[UIButton alloc] initWithFrame:[self doWorkToGetFrame]];
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
[self addSubview:test];
}
}];
}];
这一切都驻留在 UIView 容器中。