2012-07-24 11:44:16 -07:00
|
|
|
//
|
|
|
|
// NBContainerViewController.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 7/24/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
2012-07-25 17:29:29 -07:00
|
|
|
@interface NBContainerViewController : UIViewController <UIPopoverControllerDelegate> {
|
2012-07-24 11:44:16 -07:00
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
}
|
|
|
|
|
|
|
|
@property (atomic, strong) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
|
|
|
2012-07-24 15:29:01 -07:00
|
|
|
|
|
|
|
- (void)adjustDashboardScreen;
|
|
|
|
- (void)adjustFeedDetailScreen;
|
2012-07-25 17:29:29 -07:00
|
|
|
- (void)adjustFeedDetailScreenForStoryTitles;
|
2012-07-24 15:29:01 -07:00
|
|
|
|
2012-07-24 11:44:16 -07:00
|
|
|
- (void)transitionToFeedDetail;
|
2012-07-24 15:29:01 -07:00
|
|
|
- (void)transitionFromFeedDetail;
|
2012-07-25 20:38:44 -07:00
|
|
|
- (void)transitionToShareView;
|
|
|
|
- (void)transitionFromShareView;
|
2012-07-25 10:50:52 -07:00
|
|
|
|
|
|
|
- (void)dragStoryToolbar:(int)yCoordinate;
|
2012-07-25 17:29:29 -07:00
|
|
|
- (void)showUserProfilePopover:(id)sender;
|
|
|
|
|
2012-07-24 11:44:16 -07:00
|
|
|
@end
|