mirror of
https://github.com/zhigang1992/FunctionalReactivePixels.git
synced 2026-05-22 13:54:28 +08:00
23 lines
551 B
Objective-C
23 lines
551 B
Objective-C
//
|
|
// FRPFullSizePhotoViewModel.h
|
|
// FRP
|
|
//
|
|
// Created by Ash Furrow on 10/21/2013.
|
|
// Copyright (c) 2013 Ash Furrow. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class FRPPhotoModel;
|
|
|
|
@interface FRPFullSizePhotoViewModel : NSObject
|
|
|
|
-(instancetype)initWithPhotoModelArray:(NSArray *)photoModelArray initialPhotoIndex:(NSInteger)initialPhotoIndex;
|
|
|
|
@property (nonatomic, readonly) NSInteger initialPhotoIndex;
|
|
|
|
@property (nonatomic, readonly) NSString *initialPhotoName;
|
|
-(FRPPhotoModel *)photoModelAtIndex:(NSInteger)index;
|
|
|
|
@end
|