0

TWRequest の結果を含むカスタム セルを使用してテーブル ビューを伝播しようとしていますが、うまくいきません。ツイートをディクショナリ オブジェクトに格納してから、ObjectAtKey リクエストを呼び出して文字列に入れようとしています。ここに私のコードがあります - どんな助けもいただければ幸いです。ありがとう -

-(void)fetchTweets
{
    // Do a simple search, using the Twitter API
    TWRequest *request = [[TWRequest alloc] initWithURL:[NSURL URLWithString:
                                                         @"http://search.twitter.com/search.json?q=iOS%205&rpp=5&with_twitter_user_id=true&result_type=recent"] 
                                             parameters:nil requestMethod:TWRequestMethodGET];

    // Notice this is a block, it is the handler to process the response
    [request performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error)
    {
        if ([urlResponse statusCode] == 200) 
        {
            // The response from Twitter is in JSON format
            // Move the response into a dictionary and print
            NSError *error;        
            NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:responseData options:0 error:&error];
            NSLog(@"Twitter response: %@", dict);                           
        }
        else
            NSLog(@"Twitter error, HTTP response: %i", [urlResponse statusCode]);
    }];
}

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

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"cell";
    CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {

        cell = [[CustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

    }  


    NSString *tweetText = [dict objectForKey:@"text"];
    NSArray *tweetComponents = [tweetText componentsSeparatedByString:@":"]; 


    cell.Header.text = [tweetComponents objectAtIndex:0];
    cell.Details.text = [tweetComponents objectAtIndex:1];
    cell.Date.text = [tweetComponents objectAtIndex:2];

    return cell;
}
4

1 に答える 1

1

Twitter 応答からツイートの NSMutableArray を作成する必要があります。各ツイートは個別のオブジェクトです。

NSMutableArray *resultArray = [[NSMutableArray] alloc] init];
for (NSDictionary *tweet in dict)
{
     [resultArray addObject:tweet];
}

次にcellForRowAtIndexPath、テーブルの行に基づいてオブジェクトを取得します。

TweetResult *tweetResult [resultArray objectAtIndex:[indexPath row]];

于 2012-06-26T00:28:29.737 に答える