我目前正在开发iOS应用程序。问题是我用于测试的iPad 2运行速度非常慢。推送和弹出很慢,列表没有响应等等。
我尝试将一个View Controller与一个UITableViewController隔离,以找出无响应的原因。申请仍然很慢。
之后,我评论了webservice调用和解析调用,使应用程序只有一个UITableView,显示30行静态文本。还是很慢。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *identifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil)
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
UILabel *labelTeamA = (UILabel *)[cell viewWithTag:100];
[labelTeamA setText:@"test"];
return cell;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 30;
}
已安装的其他应用程序运行良好。
请帮我找出问题。
修改 刚刚发现libGoogleAdMobAds.a库负责应用程序中的所有延迟。有没有解决方案?