MGTwitterEngineが何を返すのかよくわかりました....私は考えました。しかし、私はまだ私のテーブルビューにそれを取得するために何か間違っている。これは私が私のcellforrowatindexpath方法で持っているものです。MGTwitterEngineとTableView
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@"Default"];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"Default"] autorelease];
}
NSDictionary *record = [NSDictionary dictionaryWithContentsOfFile:[twitterEngine getUserTimelineFor:username since:nil count:20]];
cell.text = [record valueForKey:@"text"];
return cell;
}
私が間違って何をしているのですか?ありがとう
いいえ、デイブさん、私はそれらをうまく理解しています。 – Xcoder