| 12345678910111213141516171819 |
- //
- // ChooseShareController.h
- // model
- //
- // Created by Drew on 2018/10/28.
- // Copyright © 2018年 Mine. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol ShareProtocol <NSObject>
- -(void)shareModel;
- -(void)shareMember;
- @end
- @interface ChooseShareController : UIViewController
- @property (nonatomic,retain) id <ShareProtocol> delegate;
- @end
- NS_ASSUME_NONNULL_END
|