我是objective-c的新手。我的问题是控制器之间导航缓慢。 当我从一个控制器跳到另一个控制器时,它真的很慢,因为它从服务获取数据,解析它然后显示它。所有这些大约需要4-5秒。 现在我已将所有这些数据提取到我的DetailController的loadView中。无论如何我首先显示控制器然后显示数据。因为截至目前,当我在根控制器上选择一行时,它会显示活动并停留在根控制器上,然后导航到DetailController。 因此,它首先加载数据然后显示它。无论如何,我可以反转这个过程,首先显示控制器,然后显示它..
这就是我正在做的事情
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
DataCollection *collection = [DataCollection sharedObject];
Product *tempProduct = [[collection popularProducts] objectAtIndex:row] ;
ProductDetailViewController *tempProductDetail = [[ProductDetailViewController alloc] init];
tempProductDetail.homeViewProduct = tempProduct;
[tempProductDetail release];
}
然后是细节控制器
- (void)loadView {
[super loadView];
// here's all the data loading and parsing ... which takes time
}
//这是下载数据的方法,我正在使用REST服务来获取所有数据。
- (void) getProductData:(NSString*)productId{
NSMutableString *specificURL = [[NSMutableString alloc] initWithString:@"GetProductPage?id="];
[specificURL appendFormat:@"%@",productId];
[specificURL appendFormat:@"&dataSources=&accountId=&companyId=&version=1&cultureCode=sv¤cyId=2&format=json"];
NSDictionary *serverCategories = [[NSDictionary alloc] initWithDictionary:[appRequestController proceesRequest:specificURL]];
NSArray *categories = [[[serverCategories objectForKey:@"DataSources"] objectAtIndex:0] objectForKey:@"Items"];
[serverCategories release];
if ([[productsArray objectAtIndex:j] objectForKey:@"Name"] != [NSNull null]) {
[product setProductName:[[productsArray objectAtIndex:j] objectForKey:@"Name"]];
}
else {
[product setProductName:@""];
}
if ([[productsArray objectAtIndex:j] objectForKey:@"ThumbnailImage"] != [NSNull null]) {
[product setProductImage:[[productsArray objectAtIndex:j] objectForKey:@"ThumbnailImage"]];
}
else {
[product setProductImage:@""];
}
if ([[productsArray objectAtIndex:j] objectForKey:@"Price"] != [NSNull null]) {
[product setProductPrice:[[productsArray objectAtIndex:j] objectForKey:@"Price"]];
}
else {
[product setProductPrice:@""];
}
[[collection popularProducts] addObject:product];
[product release];
}
我复制了粘贴的代码,以便您可以了解我是如何获取数据的。下面是cellForRowAtIndexPath的代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *MyIdentifier = @"mainMenuIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier] autorelease];
[cell setSelectedBackgroundView:[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"highlightstrip.png"]]];
}
UILabel *productNameLbl = [[UILabel alloc] initWithFrame:CGRectMake(90, 8, 200,10)];
[productNameLbl setText:[NSString stringWithString:[[[[DataCollection sharedObject] popularProducts]objectAtIndex:indexPath.row] productName]]];
[productNameLbl setFont:[UIFont boldSystemFontOfSize:12.0]];
[cell addSubview:productNameLbl];
[productNameLbl release];
UILabel *productSubLbl = [[UILabel alloc] initWithFrame:CGRectMake(90, 22, 190,40)];
[productSubLbl setText:[NSString stringWithString:[[[[DataCollection sharedObject] popularProducts]objectAtIndex:indexPath.row] productSubHeader]]];
[productSubLbl setTextColor:[UIColor colorWithRed:102.0/255.0 green:102.0/255.0 blue:102/255.0 alpha:1.0]];
productSubLbl.lineBreakMode = UILineBreakModeWordWrap;
productSubLbl.numberOfLines = 3;
[productSubLbl setFont:[UIFont fontWithName:@"Arial" size:10]];
[cell addSubview:productSubLbl];
[productSubLbl release];
NSMutableString *url = [[NSMutableString alloc] initWithString:@""];
NSString *baseImageURL = @"http://samplesite.com/";
NSString *imagePath = [NSString stringWithString:[[[[DataCollection sharedObject] popularProducts]objectAtIndex:indexPath.row] productImage]];
[url appendString:baseImageURL];
[url appendString:imagePath];
NSURL *imageURL = [NSURL URLWithString:url];
NSData *data = [NSData dataWithContentsOfURL:imageURL];
UIImage *img = [[UIImage alloc] initWithData:data cache:NO];
UIImageView *imageView = [[UIImageView alloc] initWithImage:img];
[imageView setFrame:CGRectMake(10, 10, 70, 70)];
[cell addSubview:imageView];
[imageView release];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
答案 0 :(得分:1)
将网址或产品ID传递给详细视图。在ProductDetail的viewDidLoad中,创建一个后台线程来检索您的数据。后台线程完成后,它将通过详细信息通知您的ProductDetail控制器。那时,您更新了ProductDetailView。
要在后台线程上获取数据,您可以使用
答案 1 :(得分:0)
将行传递到ProductDetailViewController中,并在其中使用viewDidLoad方法进行获取。您可能还想显示一个微调器(UIActivityIndicator),您肯定应该阅读后台线程。
答案 2 :(得分:-1)
要使用户可以使用该视图并在一段时间后加载数据,您可以使用NSTimer。
只需要一个NSTimer方法,它将在viewDidLoad方法中作为
调用
- [NSTimer scheduledTimerWithTimeInterval:<#(NSTimeInterval)ti#>目标:其中#(ID)aTarget#>选择:其中#(SEL)aSelector#> USERINFO:其中#(ID)USERINFO#>重复:其中#(BOOL)yesOrNo#>]
放一些时间间隔,之后会调用你的加载方法。
希望这有帮助。