23 lines
526 B
Objective-C
23 lines
526 B
Objective-C
//
|
||
// rightDeviceCollectionViewCell.h
|
||
// Ifish
|
||
//
|
||
// Created by ifish7-ios on 16/3/28.
|
||
// Copyright © 2016年 imac. All rights reserved.
|
||
//
|
||
|
||
#import <UIKit/UIKit.h>
|
||
|
||
@interface rightDeviceCollectionViewCell : UICollectionViewCell
|
||
|
||
//cell中的图片;
|
||
@property(strong,nonatomic) UIImageView *imageView;
|
||
//cell中的描述文本;
|
||
@property(strong,nonatomic) UIButton *descbutton;
|
||
//cell右上角的删除按钮;
|
||
@property(nonatomic,strong)UIButton *deleteButton;
|
||
|
||
@property (nonatomic,strong) UIView *point;
|
||
|
||
@end
|