NewsBlur/media/iphone/Classes/ShareViewController.h

31 lines
962 B
C
Raw Normal View History

2012-06-21 11:53:48 -07:00
//
// ShareViewController.h
// NewsBlur
//
// Created by Roy Yang on 6/21/12.
// Copyright (c) 2012 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
2012-06-22 11:52:10 -07:00
#import "NewsBlurAppDelegate.h"
2012-06-21 11:53:48 -07:00
2012-06-22 11:52:10 -07:00
@interface ShareViewController : UIViewController <ASIHTTPRequestDelegate> {
2012-06-21 11:53:48 -07:00
NewsBlurAppDelegate *appDelegate;
2012-06-21 11:53:48 -07:00
}
2012-06-22 11:52:10 -07:00
@property (retain, nonatomic) IBOutlet UITextView *commentField;
2012-06-21 11:53:48 -07:00
@property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate;
2012-06-24 23:02:37 -07:00
@property (retain, nonatomic) IBOutlet UIButton *facebookButton;
@property (retain, nonatomic) IBOutlet UIButton *twitterButton;
2012-06-25 18:05:25 -07:00
@property (retain, nonatomic) IBOutlet UIBarButtonItem *submitButton;
@property (retain, nonatomic) IBOutlet UIBarButtonItem *toolbarTitle;
2012-06-21 11:53:48 -07:00
2012-06-25 18:05:25 -07:00
- (void)setSiteInfo:(NSString *)userId setUsername:(NSString *)username;
2012-06-21 11:53:48 -07:00
- (IBAction)doCancelButton:(id)sender;
2012-06-22 11:52:10 -07:00
- (IBAction)doToggleButton:(id)sender;
- (IBAction)doShareThisStory:(id)sender;
2012-06-25 18:05:25 -07:00
- (IBAction)doReplyToComment:(id)sender;
2012-06-21 11:53:48 -07:00
@end