3
我想開發可共享圖像社交網絡應用程序,它工作得很好,但我想我的應用程序有一些提前的功能份額照片
我看到,在iOS6的,它可以共享從照片庫圖像用自來水共享按鈕
現在我想我在共享屏幕列表中的應用程序,我該怎麼辦呢?
- (void) loadMoreData
{
[self requestServerGetTimeline];
}
- (void) btnImageClicked:(NSString *)photoId
{
DetailImageController *detailImageController = [[DetailImageController alloc] initwithPhotoId:photoId withNavigationController:self.navigationController];
[self.navigationController pushViewController:detailImageController animated:YES];
[detailImageController release];
}
- (void) btnUsernameClicked:(NSString *)userId
{
MeshUserInformationController *detailUserController = [[MeshUserInformationController alloc] initWithNavigation:self.navigationController withUserId:userId];
[self.navigationController pushViewController:detailUserController animated:YES];
[detailUserController release];
}