我正在开发一个应用程序,它让用户可以将他们的应用程序的详细信息分享到 facebook 中。我有 UITableview ,其中包含作者姓名列表,当您单击书名时,它会转到另一个UITableView
显示该作者的不同书籍的地方TableViewCell
。我可以在 2nd 中显示列表UITableView
。我想知道如何分享作者姓名、书名和图片(第二个表格视图详细信息)。我正在展示执行此操作的代码.. 因此,当用户想要分享详细信息时,他将不得不点击UIButton
author 的每个单元格中的那个UITableView
。
didselectatindexpath
NSDictionary *selectedAuthor = nil;
NSArray *sectionArray=[mainIndexDictionary objectForKey:[allKeysArray objectAtIndex:indexPath.section]];
selectedAuthor = [sectionArray objectAtIndex:indexPath.row];
iPath=[[selectedAuthor objectForKey:@"SymptIndexID"] intValue];
NSLog(@"iPath - %d",iPath);
authortitleString=[[selectedAuthor objectForKey:@"authorIndexName"]stringByAppendingString:@" cure!"];
}
bookArray=[objDB customCellData:(NSInteger)iPath];
[self.view bringSubviewToFront:authorView];
[bookTableView scrollRectToVisible:CGRectMake(0.0, 0.0, 320.0,10.0) animated:NO];
[bookTableView reloadData]
;