mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-03-25 09:25:47 +00:00
- new dark look that matches samhuri.net - improved cell layout for article list - fix yap caching - update service layer to match new API - implement authentication - fix bugs all over - add a preview
17 lines
376 B
Objective-C
17 lines
376 B
Objective-C
//
|
|
// PreviewViewController.h
|
|
// Blog
|
|
//
|
|
// Created by Sami Samhuri on 2015-04-19.
|
|
// Copyright (c) 2015 Guru Logic Inc. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <PromiseKit/Promise.h>
|
|
|
|
@interface PreviewViewController : UIViewController
|
|
|
|
@property (nonatomic, strong) NSURLRequest *initialRequest;
|
|
@property (nonatomic, strong) PMKPromise *promise;
|
|
|
|
@end
|