1

いくつかのプレーヤー データを表示する 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
4

1 に答える 1

0

これは、アクセサー メソッドをオーバーライドしようとしているように見えますが、正しい命名を使用していません。あなたが実際に呼び出すことはないので、私はこの仮定をしますgetPlayerFormRtf

このコードは、2 つの簡単な修正を行うだけで (うまく動作しませんが) 動作するはずです。

- (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;
}

プレースホルダー URL 文字列がネットワーク アクセス URL を暗示しているように見えるため、これは URL の同期読み込みを参照する非常に悪い考えであることに注意してください。これにより、アプリケーションが強制終了されるのに十分な時間、メイン スレッドがブロックされる危険があります。

于 2012-08-21T14:06:11.207 に答える