mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
23 lines
452 B
Objective-C
23 lines
452 B
Objective-C
//
|
|
// FeedDashboardViewController.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Roy Yang on 6/20/12.
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
@interface FeedDashboardViewController : UIViewController {
|
|
NewsBlurAppDelegate *appDelegate;
|
|
UILabel *storyLabel;
|
|
|
|
}
|
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
|
|
@property (nonatomic) IBOutlet UILabel *storyLabel;
|
|
|
|
@end
|