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