mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
15 lines
330 B
Objective-C
Executable file
15 lines
330 B
Objective-C
Executable file
//
|
|
// OSKWebPageTitleUtility.h
|
|
// Unread
|
|
//
|
|
// Created by Jared on 4/30/14.
|
|
// Copyright (c) 2014 Nice Boy LLC. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface OSKWebPageTitleUtility : NSObject
|
|
|
|
+ (void)getWebPageTitleForURL:(NSString *)url completion:(void(^)(NSString *fetchedTitle))completion;
|
|
|
|
@end
|