mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
22 lines
436 B
C
22 lines
436 B
C
![]() |
//
|
||
|
// NBContainerViewController.h
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Roy Yang on 7/24/12.
|
||
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@class NewsBlurAppDelegate;
|
||
|
|
||
|
@interface NBContainerViewController : UIViewController {
|
||
|
NewsBlurAppDelegate *appDelegate;
|
||
|
}
|
||
|
|
||
|
@property (atomic, strong) IBOutlet NewsBlurAppDelegate *appDelegate;
|
||
|
|
||
|
- (void)adjustDashboardFrame;
|
||
|
- (void)transitionToFeedDetail;
|
||
|
@end
|