我有一个视图,因为我想用mapview显示表视图。
我的问题是如何同时处理这两件事。我想同时展示这个东西,所以速度问题不会来。
了解更多信息,我添加了想要显示的图像。
答案 0 :(得分:0)
你想看看我的朋友多线程。
管理tableView的方法在一个线程中运行,而map方法在另一个线程中运行。
例如,在viewDidLoad中:
[self performSelectorInBackground:@selector(downloadMap) withObject:nil];
[self performSelectorInBackground:@selector(downloadTableData) withObject:nil];