mirror of
https://github.com/zhigang1992/FunctionalReactivePixels.git
synced 2026-01-12 22:47:31 +08:00
21 lines
435 B
Objective-C
21 lines
435 B
Objective-C
//
|
|
// FRPPhotoViewModel.h
|
|
// FRP
|
|
//
|
|
// Created by Ash Furrow on 10/22/2013.
|
|
// Copyright (c) 2013 Ash Furrow. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class FRPPhotoModel;
|
|
|
|
@interface FRPPhotoViewModel : NSObject
|
|
|
|
-(instancetype)initWithPhotoModel:(FRPPhotoModel *)photoModel;
|
|
|
|
@property (nonatomic, readonly) RACCommand *viewDidAppearCommand;
|
|
@property (nonatomic, readonly) RACSignal *photoImageSignal;
|
|
|
|
@end
|