mirror of
https://github.com/zhigang1992/FunctionalReactivePixels.git
synced 2026-04-28 12:04:56 +08:00
20 lines
387 B
Objective-C
20 lines
387 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 FRPPhotoModel;
|
|
|
|
@interface FRPPhotoDetailViewController : UIViewController
|
|
|
|
-(instancetype)initWithPhotoModel:(FRPPhotoModel *)photoModel;
|
|
|
|
@property (nonatomic, readonly) FRPPhotoModel *photoModel;
|
|
|
|
@end
|