私はUIViewControllerでテーブルビューを持っており、データベースからデータをロードします。しかし、私はアプリを起動すると、テーブルは空です。テーブルをクリックしたときにのみ、データが表示されます。誰かが私が何を変えなければならないと教えてくれる?ここに私のコードは次のとおりです。Objective-C:UIViewControllerのTableView - データはクリック後にロードされます。
#import "DashboardViewController.h"
#import <UIKit/UIKit.h>
@interface DashboardViewController()
@property (strong, nonatomic) IBOutlet UITableView *tableView;
@property (strong, nonatomic) NSMutableArray *data;
@end
@implementation DashboardViewController
- (void)viewDidLoad {
[super viewDidLoad];
}
-(void)viewWillAppear:(BOOL)animated{
[self data]; // ???
}
- (NSMutableArray *)data {
if(!_data){
_data = [[NSMutableArray alloc] init];
NSString *username = [[NSUserDefaults standardUserDefaults] stringForKey:@"username"];
NSURLSession *session = [NSURLSession sharedSession];
NSString *url = [NSString stringWithFormat:@"http://www.example.net/getData.php?user=%@", username];
NSURLSessionDataTask *dataTask = [session dataTaskWithURL:[NSURL URLWithString:url] completionHandler:^(NSData *data, NSURLResponse *response, NSError *error){
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
NSString *errorCode = [json valueForKey:@"error"];
if([errorCode isEqualToString:@"e0"]){
NSArray *myData = [json objectForKey:@"myData"];
for (int i = 0; i < [myData count]; i++) {
[_data addObject:[myData objectAtIndex:i]];
[self.tableView reloadData];
}
}
}];
[dataTask resume];
}
return _data;
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [self.data count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath];
cell.textLabel.text = [[self.data objectAtIndex:indexPath.row] objectForKey:@"name"];
return cell;
}
@end
のようにちょうど[self.tableView reloadData]書くありません。あなたのループから外れ、条件が満たされている場合。 –