NewsBlur/clients/ios/Classes/FirstTimeUserAddFriendsViewController.h
David Sinclair 383384b6df #1270 (replacing UIWebView with WKWebView)
- All app-specific uses of UIWebView have been replaced with WKWebView.
- Some third-party uses remain.
- More testing required.
- Note that I’ve bumped the minimum iOS version to iOS 11, since that is needed for WKWebView support.
- Committing to a new branch until ready.
2020-02-23 15:21:32 -08:00

39 lines
1.1 KiB
Objective-C

//
// 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"
@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