0

識別子が「tweetCell」のカスタムセルがあります。これをtableviewcontroller.hファイルにインポートしました。クラスをストーリーボードのプロトタイプセルにリンクしました。すべてのUILabelはセルに接続されていますが、テーブルビューでカスタムセルを表示できません。うまくいきましたか?それでは一晩で止まりましたか?!! クラスファイルは大文字で始める必要があることを理解しています。これを変更しましたが、役に立ちませんでした。誰かが私のエラーをここで見つけることができますか?前もって感謝します......

- (void)fetchTweets
{
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        NSData* data = [NSData dataWithContentsOfURL:
                        [NSURL URLWithString: @"http://search.twitter.com/search.json?q=%23mysearchhashtag"]];

        NSError* error;

        tweets = [NSJSONSerialization JSONObjectWithData:data
                                                 options:kNilOptions
                                                   error:&error];

        dispatch_async(dispatch_get_main_queue(), ^{
            [self.tableView reloadData];
        });
    });
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return tweets.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"tweetCell";

    customCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[customCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    NSDictionary *tweet = [tweets objectAtIndex:indexPath.row];

    NSString *tweetText = [tweet valueForKey:@"text"];

    NSArray *tweetComponents = [tweetText componentsSeparatedByString:@":"]; 


    cell.firstDetail.text = [tweetComponents objectAtIndex:0];
    cell.secondDetail.text = [tweetComponents objectAtIndex:1];
    cell.thirdDetail.text = [tweetComponents objectAtIndex:2];




    return cell;
}
4

1 に答える 1

1

このメソッドを書きました- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableViewか?このようにしてみてください。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
        return 1;

    }
于 2012-06-01T11:01:29.383 に答える