samhuri.net-ios/Blog/DetailViewController.h
Sami Samhuri bd704e4241 implement basic editing, preview, and improve article list
- 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
2015-04-19 19:15:55 -07:00

20 lines
365 B
Objective-C

//
// DetailViewController.h
// Blog
//
// Created by Sami Samhuri on 2014-10-18.
// Copyright (c) 2014 Guru Logic Inc. All rights reserved.
//
@import UIKit;
@class BlogController;
@class Post;
@interface DetailViewController : UIViewController
@property (strong, nonatomic) BlogController *blogController;
@property (strong, nonatomic) Post *post;
@end