Skip to content

Instantly share code, notes, and snippets.

View nwg's full-sized avatar

Nathaniel W Griswold nwg

  • Greater Milwaukee Area
View GitHub Profile
- (IBAction)commentsButtonPressed {
//create an entity that is unique with your application.
NSString *entityUrlString = @"http://www.example.com/object/1234";
UIViewController *commentsController = [SocializeCommentsTableViewController socializeCommentsTableViewControllerForEntity:entityUrlString];
[self presentModalViewController:commentsController animated:YES];
}
- (IBAction)commentsButtonPressed {
//create an entity that is unique with your application.
NSString *entityUrlString = @"http://www.example.com/object/1234";
UIViewController *commentsController = [SocializeCommentsTableViewController socializeCommentsTableViewControllerForEntity:entityUrlString];
[self presentModalViewController:commentsController animated:YES];
}
- (IBAction)commentsButtonPressed {
//create an entity that is unique with your application.
NSString *entityUrlString = @"http://www.example.com/object/1234";
UIViewController *commentsController = [SocializeCommentsTableViewController socializeCommentsTableViewControllerForEntity:_textField.text];
[self presentModalViewController:commentsController animated:YES];
}