我不知道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 2009-07-29 23:24:22