Skip to content

Instantly share code, notes, and snippets.

@FawadHa1der
Created September 8, 2011 21:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save FawadHa1der/1204768 to your computer and use it in GitHub Desktop.
Save FawadHa1der/1204768 to your computer and use it in GitHub Desktop.
SocializeSDK iOS Code Snippets part 2
// Allocate memory for the instance
SocializeCommentsTableViewController* commentsController = [[[SocializeCommentsTableViewController alloc] initWithNibName:@"SocializeCommentsTableViewController" bundle:nil entryUrlString:entityUrlString] autorelease];
[self.navigationController pushViewController:commentsController animated:YES];
[socialize getEntityByKey:@"www.techcrunch.com"];
#pragma mark SocializeServiceDelegate
//if the entity does not exist
-(void)service:(SocializeService*)service didFail:(NSError*)error{
}
// if the entity is found, we can access it at the first index of the array.
// The size will always be one when we are trying to get information about an entity.
-(void)service:(SocializeService*)service didFetchElements:(NSArray*)dataArray {
if ([dataArray count]){
id<SocializeObject> object = [dataArray objectAtIndex:0];
if ([object conformsToProtocol:@protocol(SocializeEntity)]){
// do entity saving here.
// All the entity related information can be fetched here ie stats or name.
}
}
}
#pragma mark -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment