mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-19 12:58:29 +00:00
21 lines
464 B
Objective-C
Executable file
21 lines
464 B
Objective-C
Executable file
//
|
|
// RWInstapaperActivity.h
|
|
// InstapaperActivity
|
|
//
|
|
// Created by Justin Ridgewell on 2/27/13.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "UIImage+ImageNamedExtension.h"
|
|
#import "ZYInstapaperActivityItem.h"
|
|
#import "ZYInstapaperAddRequestDelegate.h"
|
|
|
|
@interface RWInstapaperActivity : UIActivity <ZYInstapaperAddRequestDelegate>
|
|
|
|
@property (strong, nonatomic) NSString *username;
|
|
@property (strong, nonatomic) NSString *password;
|
|
|
|
+ (instancetype)instance;
|
|
|
|
@end
|