mirror of
https://github.com/zhigang1992/FunctionalReactivePixels.git
synced 2026-01-12 22:47:31 +08:00
20 lines
414 B
Objective-C
20 lines
414 B
Objective-C
//
|
|
// FRPPhotoDetailViewController.h
|
|
// FRP
|
|
//
|
|
// Created by Ash Furrow on 10/15/2013.
|
|
// Copyright (c) 2013 Ash Furrow. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class FRPPhotoDetailViewModel;
|
|
|
|
@interface FRPPhotoDetailViewController : UIViewController
|
|
|
|
-(instancetype)initWithViewModel:(FRPPhotoDetailViewModel *)viewModel;
|
|
|
|
@property (nonatomic, readonly) FRPPhotoDetailViewModel *viewModel;
|
|
|
|
@end
|