NewsBlur/clients/ios/Classes/UserProfileViewController.h

40 lines
1,008 B
C
Raw Normal View History

2012-07-01 18:26:39 -07:00
//
// UserProfileViewController.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"
2012-07-01 18:26:39 -07:00
@class NewsBlurAppDelegate;
2012-07-09 21:13:06 -07:00
@class ProfileBadge;
2012-07-01 18:26:39 -07:00
2017-03-19 18:15:36 -07:00
@interface UserProfileViewController : BaseViewController
2017-03-09 20:29:30 -08:00
<UITableViewDataSource, UITableViewDelegate> {
2012-07-01 18:26:39 -07:00
NewsBlurAppDelegate *appDelegate;
UILabel *followingCount;
UILabel *followersCount;
2012-07-09 21:13:06 -07:00
ProfileBadge *profileBadge;
2012-07-13 14:21:55 -07:00
UITableView *profileTable;
2012-07-13 16:02:21 -07:00
NSArray *activitiesArray;
NSString *activitiesUsername;
NSDictionary *userProfile;
2012-07-01 18:26:39 -07:00
}
2012-07-15 15:06:06 -07:00
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
@property (nonatomic) ProfileBadge *profileBadge;
@property (nonatomic) UITableView *profileTable;
@property (nonatomic) NSArray *activitiesArray;
@property (nonatomic) NSString *activitiesUsername;
@property (nonatomic) NSDictionary *userProfile;
2012-07-01 18:26:39 -07:00
- (void)getUserProfile;
2012-07-01 21:58:55 -07:00
- (void)doCancelButton;
2012-07-01 18:26:39 -07:00
@end