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.
63 lines
1.2 KiB
63 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
|
|
|