20 lines
599 B
Objective-C
20 lines
599 B
Objective-C
//
|
|
// Reprt4ViewCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/8/30.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface Reprt4ViewCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UIImageView *shangJiaImg;
|
|
@property (weak, nonatomic) IBOutlet UILabel *shangJiaName;
|
|
@property (weak, nonatomic) IBOutlet UILabel *shangJiadetail;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *reZhengImg;
|
|
@property (weak, nonatomic) IBOutlet UIButton *faSongBtn;
|
|
@property (weak, nonatomic) IBOutlet UIView *cell4backView;
|
|
-(void)cellSetBackViewCorner;
|
|
@end
|