123456789101112131415 |
- //
- // XYWebOnRedirectRequestURLProtocol.m
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/5/30.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface IanClickImageView : UIImageView
- @property (nonatomic, assign) id target;
- @property (nonatomic, assign) SEL action;
- -(void)addTarget:(id)target action:(SEL)action;
- @end
|