| 123456789101112131415161718 |
- //
- // StockRefreshDataProtocol.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/18.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @protocol StockRefreshDataProtocol <NSObject>
- @optional
- /**
- 保存后更新数据
- */
- - (void)refreshData;
- @end
|