mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
26 lines
613 B
Objective-C
Executable file
26 lines
613 B
Objective-C
Executable file
//
|
|
// OSKActivitySheetViewController.h
|
|
// Overshare
|
|
//
|
|
//
|
|
// Copyright (c) 2013 Overshare Kit. All rights reserved.
|
|
//
|
|
|
|
@import UIKit;
|
|
|
|
@class OSKSession;
|
|
@protocol OSKActivitySheetDelegate;
|
|
|
|
@interface OSKActivitySheetViewController : UIViewController
|
|
|
|
@property (strong, nonatomic, readonly) OSKSession *session;
|
|
|
|
- (instancetype)initWithSession:(OSKSession *)session
|
|
activities:(NSArray *)activities
|
|
delegate:(id <OSKActivitySheetDelegate>)delegate
|
|
usePopoverLayout:(BOOL)usePopoverLayout;
|
|
|
|
- (CGFloat)visibleSheetHeightForCurrentLayout;
|
|
|
|
@end
|
|
|