// // ShareViewController.h // NewsBlur // // Created by Roy Yang on 6/21/12. // Copyright (c) 2012 NewsBlur. All rights reserved. // #import #import "NewsBlurAppDelegate.h" @interface ShareViewController : UIViewController { NewsBlurAppDelegate *appDelegate; } @property ( nonatomic) IBOutlet UITextView *commentField; @property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate; @property ( nonatomic) IBOutlet UIButton *facebookButton; @property ( nonatomic) IBOutlet UIButton *twitterButton; @property ( nonatomic) IBOutlet UIBarButtonItem *submitButton; @property ( nonatomic) IBOutlet UIBarButtonItem *toolbarTitle; - (void)setSiteInfo:(NSString *)userId setUsername:(NSString *)username; - (void)clearComments; - (IBAction)doCancelButton:(id)sender; - (IBAction)doToggleButton:(id)sender; - (IBAction)doShareThisStory:(id)sender; - (IBAction)doReplyToComment:(id)sender; @end