在我的第一个视图控制器中,我有一个使用 iOS 6 的本机 Facebook 集成的对话框。我希望在第一个视图控制器上发布的所有帖子的历史记录都在我的第二个视图控制器中,在UITableViewCell
. 但是我一直无法弄清楚如何将它们两个链接起来,以便它可以获取提要。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 8;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
if (cell==nil) {
}
if (FBNativeDialogResultSucceeded) {
cell.textLabel.text=@"someone posted on facebook";
}
return cell;
}
任何帮助,将不胜感激。