私は、自分のアプリの詳細をFacebookに共有するためのアプリを提供しています。私はUITableviewに著者名のリストが含まれています。書籍名をクリックすると別のUITableView
に行きます。にその著者の別の本が表示されます。私は2番目にUITableView
のリストを表示することができます。 著者名、書籍名、画像(第2テーブルビューの詳細)をどのように共有するかを知りたかったのです。 これを行うコードを表示しています。 ユーザーが詳細を共有したいときは、UITableView
のすべてのセルにあるUIButton
をタップする必要があります。Facebookの壁にテキストと画像を共有する方法(目的C)
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]
;
http://www.techotopia.com/index.php/An_iPhone_iOS_6_Facebook_Integration_Tutorial_using_UIActivityViewController –
私の現在の場所を投稿する方法?? –