我为tableView创建了一个简单的代码来显示一些播放器数据;但是,我一直拿到空桌子。
这是一个包含从网站获取数据的表格。 我想用玩家编号(作为部分)和玩家名称(作为行)显示表格。
但是在我运行程序之后,它出现了空单元格,似乎没有取出尝试。
有谁能告诉我我的代码有什么问题?非常感谢。
#import "playerName.h"
@interface playerName ()
@end
@implementation playerName
@synthesize players = _players;
@synthesize sectionInRtf = _sectionInRtf;
- (NSMutableDictionary *)getPlayerFormRtf
{
if (!_players) {
NSURL *url = [NSURL URLWithString:@"file_on_site"];
_players = [NSMutableDictionary dictionaryWithContentsOfURL:url];
}
return _players;
}
- (NSArray *)getSections
{
if (!_sectionInRtf) {
_sectionInRtf = [self.players allKeys];
}
return _sectionInRtf;
}
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = @"Players";
self.navigationItem.rightBarButtonItem = self.editButtonItem;
}
- (void)viewDidUnload
{
[super viewDidUnload];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
#pragma mark - UITableViewDataSource
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return self.sectionInRtf.count;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
NSArray *namesInSection = [self.players objectForKey:[self.sectionInRtf objectAtIndex:section]];
return namesInSection.count;
}
//Additional Method
- (NSString *)name:(NSIndexPath *)indexPath
{
NSArray *nameInSection2 = [self.players objectForKey:[self.sectionInRtf objectAtIndex:indexPath.section]];
return [nameInSection2 objectAtIndex:indexPath.row];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"players";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell.textLabel.text = [self name:indexPath];
return cell;
}
#pragma mark - Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
}
@end
答案 0 :(得分:0)
这看起来像是在尝试覆盖访问器方法,但您没有使用正确的命名。我做了这个假设,因为你从未实际打过getPlayerFormRtf
。
代码应该可以工作(虽然不是很好),但有两个简单的修改。
- (NSMutableDictionary *)players
{
if (!_players) {
NSURL *url = [NSURL URLWithString:@"file_on_site"];
_players = [NSMutableDictionary dictionaryWithContentsOfURL:url];
}
return _players;
}
- (NSArray *)sectionInRtf
{
if (!_sectionInRtf) {
_sectionInRtf = [self.players allKeys];
}
return _sectionInRtf;
}
请请注意,这是一个极其坏主意,指的是同步加载网址,因为您的占位符网址字符串似乎意味着网络访问网址。这可能会阻塞主线程足够长的时间来杀死应用程序。