-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFindFriendViewController.h
43 lines (38 loc) · 1.34 KB
/
FindFriendViewController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// FindFriendViewController.h
// Kickoff South Bend
//
// Created by Christian Poellabauer on 6/7/13.
// Copyright (c) 2013 Christian Poellabauer. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "ProfileData.h"
//@interface FindFriendViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, UISearchDisplayDelegate, UISearchBarDelegate, UIAlertViewDelegate> {
@interface FindFriendViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, UIAlertViewDelegate, UISearchBarDelegate> {
BOOL isSearching;
IBOutlet UISearchBar *userSearchBar;
NSString *searchTerm;
BOOL searchRequested;
IBOutlet UITableView *peopleView;
BOOL clearTable;
ProfileData *userProfileData;
NSArray *userArray1;
NSArray *userArray2;
NSArray *userArray3;
NSArray *userArray4;
NSArray *allPeople;
NSInteger arrayCount1;
NSInteger arrayCount2;
NSInteger arrayCount3;
NSInteger arrayCount4;
BOOL addMore;
int currentSkip;
NSArray *allFound;
NSArray *allFriends; // 0 is no friends; 1 is invitation sent; 2 is invitation waiting; 3 is friends
NSInteger totalCount;
NSInteger currentIndex;
}
@property(nonatomic,retain) IBOutlet UISearchBar *userSearchBar;
@property(nonatomic,retain) IBOutlet UITableView *peopleView;
-(IBAction)searchNow:(id)sender;
@end