我的两个视图控制器出现了这个问题。当我运行应用程序时,tableView甚至没有显示,更不用说应该在表格中显示的数据了。我不能在这里发布截图,因为我的声誉不够高。
这是我的代码。
#import "OngoingTournamentTableViewController.h"
#import "TournamentTableViewCell.h"
#import "AppDelegate.h"
#define kOngoingTournamentURL [NSURL URLWithString:@"https://www.kimonolabs.com/api/d4leq2cs?apikey=xgp4nU6xA9UcBWSe0MIHcBVbAWz5v4wR"]
@interface OngoingTournamentTableViewController ()
@property (nonatomic, strong) NSArray *ongoingTournament;
@end
@implementation OngoingTournamentTableViewController
- (void)viewDidLoad {
[super viewDidLoad];
dispatch_async(kBgQueue, ^{
NSData *data = [NSData dataWithContentsOfURL:kOngoingTournamentURL];
[self performSelectorOnMainThread:@selector(fetchedTournamentData:)
withObject:data waitUntilDone:YES];
});
// Uncomment the following line to preserve selection between presentations.
// self.clearsSelectionOnViewWillAppear = NO;
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem;
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)fetchedTournamentData:(NSData *)tournamentResponseData {
NSError *error;
NSDictionary *json = [NSJSONSerialization
JSONObjectWithData:tournamentResponseData
options:kNilOptions
error:&error];
NSArray *myOngoingTournament = [[json objectForKey:@"results"] objectForKey:@"collection1"];
self.ongoingTournament = myOngoingTournament;
[self.tableView reloadData];
NSLog(@"%@", self.ongoingTournament);
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
return [self.ongoingTournament count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"tournamentCell" forIndexPath:indexPath];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"tournamentCell"];
}
NSDictionary *tournaments = [self.ongoingTournament objectAtIndex:indexPath.row];
NSString *title = [[tournaments objectForKey:@"Title"] objectForKey:@"text"];
NSString *venue = [tournaments objectForKey:@"Venue"];
cell.textLabel.text = title;
cell.detailTextLabel.text = venue;
return cell;
}
@end
我已经为tableView和prototype单元分配了类。有什么建议吗?
我在控制台上没有任何内容,但网址在浏览器中运行良好。
先谢谢你,再次抱歉这是一个负担。
答案 0 :(得分:0)
你将不得不采用uitableview协议并设置你的tableview委托和数据源。
如果您的视图控制器的头文件需要看起来像这样
@interface myViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
然后在设置tableview的某个地方执行
mytableview.delegate = self;
mytableview.dataSource = self;
答案 1 :(得分:0)
你可以像@myte那样编程,或者在故事板中将你的tableview链接到控制器,然后选择&#34; Delegate
&#34;并使用&#34; Datasource
&#34;再次执行此操作。
然后在.h中修改@interface
这样的行:
@interface myViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
答案 2 :(得分:0)
使用NSURLConnection
下载您的数据,如下所示。打电话给你
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:kOngoingTournamentURL];
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[NSURLConnection sendAsynchronousRequest:urlRequest queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error)
{
if (error == nil)
{
dispatch_async(dispatch_get_main_queue(), ^{
[self fetchedTournamentData:data]
});
}
}];