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
18 lines
315 B
Objective-C
18 lines
315 B
Objective-C
//
|
|
// MasterViewController.h
|
|
// Blog
|
|
//
|
|
// Created by Sami Samhuri on 2014-10-18.
|
|
// Copyright (c) 2014 Guru Logic Inc. All rights reserved.
|
|
//
|
|
|
|
@import UIKit;
|
|
|
|
@class BlogController;
|
|
|
|
@interface MasterViewController : UITableViewController
|
|
|
|
@property (strong, nonatomic) BlogController *blogController;
|
|
|
|
@end
|
|
|