mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
24 lines
477 B
Objective-C
24 lines
477 B
Objective-C
//
|
|
// FriendsListViewController.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Roy Yang on 7/1/12.
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
@interface FriendsListViewController : UITableViewController {
|
|
NewsBlurAppDelegate *appDelegate;
|
|
NSArray *allItems;
|
|
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
|
|
@property (nonatomic, copy) NSArray *allItems;
|
|
|
|
- (void)doCancelButton;
|
|
@end
|