-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSWFeedListController.h
More file actions
41 lines (34 loc) · 1.1 KB
/
SWFeedListController.h
File metadata and controls
41 lines (34 loc) · 1.1 KB
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
//
// SWFeedListController.h
// StarWorld
//
// Created by Aaron Baker on 8/25/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Three20/Three20.h>
#import "SWCurrentUser.h"
#import <MapKit/MapKit.h>
#import <MapKit/MKAnnotation.h>
#import <MapKit/MKPointAnnotation.h>
#import "SWFeedDataSource.h"
#import "SWPostTableItem.h"
#import "SWAnnotationCallout.h"
@interface SWFeedListController : TTTableViewController <UIAlertViewDelegate,SWFeedDataSourceDelegate,MKMapViewDelegate> {
SWCurrentUser *currentUser;
MKMapView *mapView;
SWFeedDataSource *feedDataSource;
CLLocationDegrees lastLatitude;
CLLocationDegrees lastLongitude;
CLLocationDegrees lastLatitudeDelta;
CLLocationDegrees lastLongitudeDelta;
CLLocationDegrees currentLatitude;
CLLocationDegrees currentLongitude;
CLLocationDegrees currentLatitudeDelta;
CLLocationDegrees currentLongitudeDelta;
BOOL searchRemote;
NSMutableArray *annotations;
NSMutableDictionary *annotationsDictionary;
UIButton *fullScreenButton;
UIButton *locationLockButton;
}
@end