mirror of
https://github.com/zhigang1992/FunctionalReactivePixels.git
synced 2026-04-28 12:04:56 +08:00
22 lines
467 B
Objective-C
22 lines
467 B
Objective-C
//
|
|
// FRPPhotoViewController.h
|
|
// FRP
|
|
//
|
|
// Created by Ash Furrow on 10/15/2013.
|
|
// Copyright (c) 2013 Ash Furrow. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class FRPPhotoViewModel;
|
|
|
|
@interface FRPPhotoViewController : UIViewController
|
|
|
|
-(instancetype)initWithViewModel:(FRPPhotoViewModel *)viewModel index:(NSInteger)photoIndex;
|
|
|
|
@property (nonatomic, readonly) NSInteger photoIndex;
|
|
|
|
@property (nonatomic, readonly) FRPPhotoViewModel *viewModel;
|
|
|
|
@end
|