22 lines
363 B
Objective-C
22 lines
363 B
Objective-C
//
|
|
// IfishStartAdView.h
|
|
// Test1
|
|
//
|
|
// Created by lianxiang on 16/11/27.
|
|
// Copyright © 2016年 lianxiangpro. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@protocol HomeStartAdviewDelegate <NSObject>
|
|
|
|
-(void)goButtonAction;
|
|
|
|
@end
|
|
|
|
@interface IfishStartAdView : UIView
|
|
|
|
@property(nonatomic,assign) id <HomeStartAdviewDelegate> delegate;//delegate
|
|
|
|
@end
|