samhuri.net-ios/Blog/EditorViewController.h

20 lines
430 B
Objective-C

//
// EditorViewController.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 EditorViewController : UIViewController
@property (strong, nonatomic) BlogController *blogController;
@property (strong, nonatomic) Post *post;
@property (copy, nonatomic) void (^postUpdatedBlock)(Post *post);
@end