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>
|
|
|
|
#import "ASIHTTPRequest.h"
|
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
2012-07-02 15:41:16 -07:00
|
|
|
@class SocialBadge;
|
2012-07-01 18:26:39 -07:00
|
|
|
|
|
|
|
@interface UserProfileViewController : UIViewController <ASIHTTPRequestDelegate> {
|
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
|
|
|
|
UILabel *followingCount;
|
|
|
|
UILabel *followersCount;
|
2012-07-02 15:41:16 -07:00
|
|
|
SocialBadge *socialBadge;
|
2012-07-01 18:26:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@property (retain, nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
2012-07-02 15:41:16 -07:00
|
|
|
@property (retain, nonatomic) IBOutlet SocialBadge *socialBadge;
|
2012-07-01 18:26:39 -07:00
|
|
|
|
|
|
|
@property (retain, nonatomic) IBOutlet UILabel *followingCount;
|
|
|
|
@property (retain, nonatomic) IBOutlet UILabel *followersCount;
|
|
|
|
|
|
|
|
- (void)getUserProfile;
|
|
|
|
- (void)requestFinished:(ASIHTTPRequest *)request;
|
|
|
|
- (void)requestFailed:(ASIHTTPRequest *)request;
|
2012-07-01 21:58:55 -07:00
|
|
|
- (void)setupModal;
|
|
|
|
- (void)doCancelButton;
|
2012-07-01 18:26:39 -07:00
|
|
|
|
|
|
|
@end
|