gpt4 book ai didi

ios - 过渡到 Xcode 5 错误和丢失数据

转载 作者:行者123 更新时间:2023-11-29 03:25:55 27 4
gpt4 key购买 nike

我当时使用的是 Xcode 4.6.1,并且已经创建了一个由 apple 批准并在 App Store 上的 iphone/ipad 应用程序。它是为 5.1 的最低部署目标而构建的
现在是时候让它与 Arm 64 架构和 IOS7 兼容了。因此,当我下载 Xcode 5 并打开我的应用程序时,我将文档版本控制一次更改为 6.1,然后更改为 7.0,并将项目部署目标更改为 6.1 和 7.0。在这两种情况下,从 Xcode 5 运行到 IOS 7 设备时,我注意到我的 UISearchBar 消失了,并且我的 UITAbleView 中的数据没有显示。可以肯定的是,应该进行修改以使应用程序与 IOS 7 兼容……但是如果没有任何显示该怎么办!有什么明显但我没有看到的东西吗?任何指针?
请记住,如果我将 Xcode 4.6.1 中的名称运行到 IOS 7 中,它运行完美,但我现在必须使用 Xcode 5 来支持 iPad air 等 Arm 64 设备。
更新 1:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];


self.navigationController.navigationBar.barStyle = UIBarStyleBlackOpaque;
self.tableView.backgroundView = nil;
self.tableView.backgroundView = [[UIView alloc] init];
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
self.tableView.backgroundColor = [UIColor colorWithRed:0.77 green:0.77 blue:0.777 alpha:0.99];
self.searchDisplayController.searchResultsTableView.separatorStyle = UITableViewCellSeparatorStyleNone;

self.searchDisplayController.searchResultsTableView.backgroundColor = [UIColor colorWithRed:0.77 green:0.77 blue:0.777 alpha:0.99];

// for(int i = 0 ; i<=20 ; i ++){
cell.textLabel.textColor=[UIColor colorWithRed:0.317 green:0.317 blue:0.317 alpha:1];

if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
// NSLog(@"this is the indexPath.row %ld" , (long)indexPath.row);
int rowCount = indexPath.row;

Author *author = [self.theauthorsLoadedFinal2 objectAtIndex:rowCount];


if(isFiltered){
author = [filteredTableData objectAtIndex:indexPath.row];

}
else{
author = [theauthorsLoadedFinal2 objectAtIndex:indexPath.row];
}
cell.textLabel.text = author.name;

cell.selectionStyle = UITableViewCellSelectionStyleBlue;


return cell;

}

请记住,应用程序正在运行,没有任何错误

最佳答案

我想通了这个问题。
Xcode 5 与旧 Xcode 版本有不同的引用点,这意味着,例如值 24 作为“X”位置,在 Xcode 5 中计算不同,所以它不是任何编码错误,这只是一个定位错误。谢谢你的时间

关于ios - 过渡到 Xcode 5 错误和丢失数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20467798/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com