16 lines
328 B
Objective-C
16 lines
328 B
Objective-C
//
|
|
// InfoXingBieCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/5/12.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "UserModel.h"
|
|
@interface InfoXingBieCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UIButton *InfoXingBieBtn;
|
|
|
|
-(void)loadXingBieWith:(UserModel*)model;
|
|
@end
|