mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00

UIActivityViewController should not be presented modally on iPad, per the documentation; it also looks pretty ugly. Also clean up display of training popover to eliminate shadow fading in background.
42 lines
1.1 KiB
Objective-C
42 lines
1.1 KiB
Objective-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 <UIPopoverControllerDelegate> {
|
|
NewsBlurAppDelegate *appDelegate;
|
|
}
|
|
|
|
@property (readonly) BOOL storyTitlesOnLeft;
|
|
@property (readonly) int storyTitlesYCoordinate;
|
|
@property (atomic, strong) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
|
|
|
|
- (void)syncNextPreviousButtons;
|
|
|
|
- (void)adjustDashboardScreen;
|
|
- (void)adjustFeedDetailScreen;
|
|
- (void)adjustFeedDetailScreenForStoryTitles;
|
|
|
|
- (void)transitionToFeedDetail;
|
|
- (void)transitionFromFeedDetail;
|
|
- (void)transitionToShareView;
|
|
- (void)transitionFromShareView;
|
|
|
|
- (void)dragStoryToolbar:(int)yCoordinate;
|
|
- (void)showUserProfilePopover:(id)sender;
|
|
- (void)showFeedMenuPopover:(id)sender;
|
|
- (void)showFeedDetailMenuPopover:(id)sender;
|
|
- (void)showFontSettingsPopover:(id)sender;
|
|
- (void)showTrainingPopover:(id)sender;
|
|
- (void)showSendToPopover:(id)sender;
|
|
- (void)showSitePopover:(id)sender;
|
|
- (void)hidePopover;
|
|
@end
|