numberOfRowsInSection中的数组等于0

时间:2014-07-10 09:14:03

标签: ios objective-c uitableview parse-platform

我有一个UITableViewController用于显示本地Business对象列表的名称。我用过这个UITableViewController 以前从.csv文件中读取信息,这一切都正常工作,并在我的UITableViewController中完美地显示了商家名称。

但是,我最近将所有这些信息都移到了Parse.com,我现在正试图在我当前的UITableViewController中阅读和显示来自Parse.com的信息。

我正在尝试重构代码,而不是在这里使用Parse.com的教程: https://www.parse.com/docs/ios_guide#ui-tables/iOS

在我的viewDidLoad方法中,我调用自己的方法[self initializeContent]来执行PFQuery以检索符合特定条件的对象列表,然后将对象保存在{{ 1}}。

执行得很好,我可以看到我的NSMutableArray方法中的NSLogs正在检索Business对象,并保存到[self initializeContent](dataArray)。 但是,在单步执行代码时,NSMutableArray方法中的dataArray为0。因此,我看不到numberOfSectionsInTableView中显示的商家名称。

UITableViewController方法可能会在numberOfSectionsInTableView方法之前执行,这意味着我的viewDidLoad将始终为0吗?

我已经介绍了代码,但无法弄清楚我的问题在哪里。

以下是我的代码 - 我尽可能多地帮助确定我的问题所在。

dataArray

BusinessDetailTableViewController.m

BusinessDetailTableViewController.h

#import <UIKit/UIKit.h>
#import <Parse/Parse.h>

@interface BusinessDetailTableViewController : UITableViewController

@property (nonatomic, strong) NSMutableArray *dataArray;
@property (nonatomic, strong) NSMutableArray *defaultBusinessArrayMutable;
@property (nonatomic, assign) int tagNumber;
    @property (nonatomic, strong) NSString *className;

@end

编辑:我添加了[self.tableView reloadData];到我的findObjectsInBackgroundWithBlock方法的结尾,正如许多人所建议的那样,现在我得到了numberOfSectionsInTableView方法,但是dataArray仍然是0.而且看起来好像我的代码执行了两次,因为Console打印可以看到?

对于我的queryParse方法中的dataArray,它返回18个对象 - 但应该只有9个。 从控制台打印,酒店阵列计数从2开始,每次增加2。

我的numberOfRowsInSection现在被执行两次,但在Parse.com查询之前。

我完全坚持这一点。

enter image description here

3 个答案:

答案 0 :(得分:2)

@Hans Moolman,是的,你是对的,你只需要在解析完成后调用表视图的重载方法。我是。

- (NSMutableArray *) queryParse:(NSString *) className
{
    PFQuery *query = [PFQuery queryWithClassName:self.className];
    [query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error)
    {
         if (!error)
         {
             NSLog(@"Successfully Retrieved %d Objects.", (int)objects.count);    // Shows how many objects are retrieved

             for (PFObject *object in objects)
             {
                 BusinessDetailContent *businessDetailContent = [[BusinessDetailContent alloc] init];        
                 businessDetailContent.no           = object[@"ID"];
                 businessDetailContent.companyName  = object[@"Company_Name"];
                 businessDetailContent.address      = object[@"Address"];
                 businessDetailContent.tel          = object[@"Tel"];
                 businessDetailContent.email        = object[@"Email"];
                 businessDetailContent.website      = object[@"Website"];
                 businessDetailContent.details      = object[@"Details"];
                 businessDetailContent.imageName    = object[@"Image_ID"];

                 // The information here is retrieved correctly  
                 NSLog(@"BUSINESS DETAIL CONTENT - ID: %@, Company Name: %@, Address: %@, Tel: %@, Email: %@, Website: %@, Details: %@, Image_Name: %@",
                           businessDetailContent.no, businessDetailContent.companyName, businessDetailContent.address, businessDetailContent.tel,
                           businessDetailContent.email, businessDetailContent.website, businessDetailContent.details,
                           businessDetailContent.imageName);


                 [defaultBusinessArrayMutable addObject:businessDetailContent];


                 NSString *strFromInt = [NSString stringWithFormat:@"%d", tagNumber];

                 if (!([strFromInt isEqualToString:@"3"] || [strFromInt isEqualToString:@"10"]))
                     {
                         [dataArray addObject:defaultBusinessArrayMutable];
                         NSLog(@"Default Business Array Mutable Count: %i", (int)dataArray.count);
                     }
                 }
             }
         }
         else
         {
             NSLog(@"Error retrieving objects: %@ %@", error, [error userInfo]);
         }
     }];
// This line to be added
[self.tableView reloadData];

}

如果仍然存在问题,请告诉我。感谢。

答案 1 :(得分:1)

对parse.com的调用异步返回数据,因此视图将在收到数据之前完成加载并检查行计数。收到数据后,您需要告诉表视图再次检查行数并刷新 - 这就是您所缺少的。

[self.tableView reloadData];

并且应该在queryParse:的完成块结尾处findObjectsInBackgroundWithBlock:进入。

答案 2 :(得分:1)

首先你将bool值默认设置为false我的意思是viewdidload。 通过解析didfinishloading函数将bool设置为true

在numberofrowsinsections

if(!bool)

{

///just hide the tableview

}

else
{



[data count];
}