mirror of
https://github.com/zhigang1992/FunctionalReactivePixels.git
synced 2026-06-12 16:58:15 +08:00
21 lines
457 B
Objective-C
21 lines
457 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 FRPPhotoModel;
|
|
|
|
@interface FRPPhotoViewController : UIViewController
|
|
|
|
-(instancetype)initWithPhotoModel:(FRPPhotoModel *)photoModel index:(NSInteger)photoIndex;
|
|
|
|
@property (nonatomic, readonly) NSInteger photoIndex;
|
|
@property (nonatomic, readonly) FRPPhotoModel *photoModel;
|
|
|
|
@end
|