NewsBlur-viq/media/ios/Classes/UserProfileViewController.h
2012-07-13 00:39:26 -07:00

34 lines
867 B
Objective-C

//
// 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;
@class ProfileBadge;
@class ActivityModule;
@interface UserProfileViewController : UIViewController <ASIHTTPRequestDelegate> {
NewsBlurAppDelegate *appDelegate;
UILabel *followingCount;
UILabel *followersCount;
ProfileBadge *profileBadge;
ActivityModule *activityModule;
}
@property (retain, nonatomic) NewsBlurAppDelegate *appDelegate;
@property (retain, nonatomic) ProfileBadge *profileBadge;
@property (retain, nonatomic) ActivityModule *activityModule;
- (void)getUserProfile;
- (void)requestFinished:(ASIHTTPRequest *)request;
- (void)requestFailed:(ASIHTTPRequest *)request;
- (void)doCancelButton;
@end