Created
July 9, 2014 17:27
-
-
Save lperrin/3ad92cfa8a494c55b369 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface FAMainAppJSBridge : NSObject<NSURLDownloadDelegate> { | |
FAMainApp *app; | |
FAAddInbox *addInbox; | |
FAWebPopup *popup; | |
} | |
- (id)initWithApp:(FAMainApp *)app; | |
- (void)sendNotification:(NSString *)title message:(NSString *)message link:(NSString *)link; | |
- (void)openExternalURL:(NSString *)rawURL; | |
- (void)downloadFile:(NSString *)name atURL:(NSString *)rawUrl; | |
- (void)updateBadge:(NSString *)unread; | |
… | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment