NewsBlur/clients/ios/Classes/FirstTimeUserAddFriendsViewController.h

40 lines
1.1 KiB
C
Raw Normal View History

2012-07-22 14:23:50 -07:00
//
// FTUXAddFriendsViewController.h
// NewsBlur
//
// Created by Roy Yang on 7/22/12.
// Copyright (c) 2012 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "NewsBlurAppDelegate.h"
2017-03-19 18:15:36 -07:00
@interface FirstTimeUserAddFriendsViewController : BaseViewController <UIWebViewDelegate> {
2012-07-22 14:23:50 -07:00
NewsBlurAppDelegate *appDelegate;
}
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
@property (nonatomic) IBOutlet UIBarButtonItem *nextButton;
2012-08-10 21:10:32 -07:00
@property (weak, nonatomic) IBOutlet UIButton *facebookButton;
@property (weak, nonatomic) IBOutlet UIButton *twitterButton;
@property (weak, nonatomic) IBOutlet UIActivityIndicatorView *facebookActivityIndicator;
@property (weak, nonatomic) IBOutlet UIActivityIndicatorView *twitterActivityIndicator;
2012-08-11 18:03:28 -07:00
@property (weak, nonatomic) IBOutlet UILabel *friendsLabel;
2012-07-22 14:23:50 -07:00
- (IBAction)tapNextButton;
2012-08-10 21:10:32 -07:00
- (IBAction)tapTwitterButton;
- (IBAction)tapFacebookButton;
- (void)selectTwitterButton;
- (void)selectFacebookButton;
2012-08-12 16:50:34 -07:00
- (IBAction)toggleAutoFollowFriends:(id)sender;
2012-08-12 18:07:54 -07:00
- (void)connectToSocial;
- (void)finishTwitterConnect;
- (void)finishFacebookConnect;
- (void)changeMessaging:(NSString *)msg;
2017-03-10 09:16:03 -08:00
@end