// // FTUXAddFriendsViewController.h // NewsBlur // // Created by Roy Yang on 7/22/12. // Copyright (c) 2012 NewsBlur. All rights reserved. // #import #import "NewsBlurAppDelegate.h" @interface FirstTimeUserAddFriendsViewController : BaseViewController { NewsBlurAppDelegate *appDelegate; } @property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate; @property (nonatomic) IBOutlet UIBarButtonItem *nextButton; @property (weak, nonatomic) IBOutlet UIButton *facebookButton; @property (weak, nonatomic) IBOutlet UIButton *twitterButton; @property (weak, nonatomic) IBOutlet UIActivityIndicatorView *facebookActivityIndicator; @property (weak, nonatomic) IBOutlet UIActivityIndicatorView *twitterActivityIndicator; @property (weak, nonatomic) IBOutlet UILabel *friendsLabel; - (IBAction)tapNextButton; - (IBAction)tapTwitterButton; - (IBAction)tapFacebookButton; - (void)selectTwitterButton; - (void)selectFacebookButton; - (IBAction)toggleAutoFollowFriends:(id)sender; - (void)connectToSocial; - (void)finishTwitterConnect; - (void)finishFacebookConnect; - (void)changeMessaging:(NSString *)msg; @end