You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.2 KiB

//
// NewOrdinaryTableViewCell.h
// tongxin
//
// Created by WeiChaoZheng on 2018/9/30.
// Copyright © 2018年 xTT. All rights reserved.
//
#import "TableCell.h"
#import "Device.h"
@interface NewOrdinaryTableViewCell : baseCell
@property (strong, nonatomic) IBOutlet UILabel * aTitleLabel;
@property (strong, nonatomic) IBOutlet UITextField * aTextField;
@property (strong, nonatomic) IBOutlet UIView *lineView;
/**
*/
@property (strong, nonatomic) IBOutlet UIImageView *contactImageView;
/**
*/
@property (strong, nonatomic) IBOutlet UILabel *contactLabel;
@property (nonatomic ,copy) NSNumber *deviceType;
/**
model
*/
@property (strong, nonatomic) Device * device;
/**
@param device <#device description#>
*/
-(void)setDevice:(Device*)device;
/**
*/
- (void)defaultInputView;
/**
UIDatePicker
*/
- (void)timeInputViewWithModel:(UIDatePickerMode)mode WithData:(NSDate*)nowDate;
/**
UIDatePicker
*/
- (void)numberInputViewWithStartNum:(NSInteger)startNum EndNum:(NSInteger)endNum WithIndex:(NSInteger)nowIndex;
@end