1234567891011121314151617 |
- //
- // RQReactiveViewProtocol.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/23.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- /// A protocol which is adopted by views which are backed by view models.
- @protocol RQReactiveViewProtocol <NSObject>
- /// Binds the given view model to the view.
- ///
- /// viewModel - The view model
- - (void)bindViewModel:(id)viewModel;
- @end
|