| 12345678910111213141516171819 |
- //
- // MoreButtonDelegate.h
- // OneCable
- //
- // Created by nComz on 2017. 3. 8..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol MoreButtonDelegate <NSObject>
- @optional
- //-(void)returnMoreButton:(UIButton*)moreBtn;
- //-(void)retrunMoreString:(NSString*)moreString;
- -(void)returnMoreId:(id)moreButtonId;
- @end
|