16 lines
255 B
Objective-C
16 lines
255 B
Objective-C
//
|
|
// LYPhoto.h
|
|
// PhotoShow
|
|
//
|
|
// Created by 米明 on 16/3/4.
|
|
// Copyright © 2016年 LY. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface LYPhoto : UIImageView
|
|
//增加点击事件
|
|
- (void)addTarget:(id)target action:(SEL)action;
|
|
|
|
@end
|