NewsBlur/clients/ios/Classes/FriendsListViewController.h

36 lines
1,002 B
C
Raw Normal View History

//
// FriendsListViewController.h
// NewsBlur
//
// Created by Roy Yang on 7/1/12.
// Copyright (c) 2012 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
2017-03-19 18:15:36 -07:00
#import "NewsBlurAppDelegate.h"
#import "NewsBlur-Swift.h"
@class NewsBlurAppDelegate;
2017-03-19 18:15:36 -07:00
@interface FriendsListViewController : BaseViewController <UITableViewDelegate, UITableViewDataSource, UISearchBarDelegate> {
NewsBlurAppDelegate *appDelegate;
2012-07-31 15:17:51 -07:00
UISearchBar *friendSearchBar;
2012-07-01 18:26:39 -07:00
UITableView *friendsTable;
NSArray *suggestedUserProfiles;
2012-07-01 18:26:39 -07:00
NSArray *userProfiles;
NSArray *userProfileIds;
}
2012-07-15 15:06:06 -07:00
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
@property (nonatomic) IBOutlet UISearchBar *friendSearchBar;
@property (nonatomic) IBOutlet UITableView *friendsTable;
@property (nonatomic) NSArray *userProfiles;
@property (nonatomic) NSArray *suggestedUserProfiles;
- (void)doCancelButton;
2012-07-01 18:26:39 -07:00
- (void)loadFriendsList:(NSString *)query;
- (void)loadSuggestedFriendsList;
2012-08-13 23:35:11 -07:00
- (void)hideUserProfileModal;
@end