mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
21 lines
389 B
Objective-C
Executable file
21 lines
389 B
Objective-C
Executable file
//
|
|
// OSKURLSchemeActivity.h
|
|
// Overshare
|
|
//
|
|
// Created by Jared on 1/26/14.
|
|
// Copyright (c) 2014 Overshare Kit. All rights reserved.
|
|
//
|
|
|
|
@import Foundation;
|
|
|
|
#import "OSKXCallbackURLInfo.h"
|
|
|
|
@protocol OSKURLSchemeActivity <NSObject>
|
|
|
|
- (BOOL)targetApplicationSupportsXCallbackURL;
|
|
|
|
@optional
|
|
|
|
- (void)prepareToPerformActionUsingXCallbackURLInfo:(id <OSKXCallbackURLInfo>)info;
|
|
|
|
@end
|