forked from coding/Coding-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskContentCell.h
More file actions
24 lines (20 loc) · 771 Bytes
/
Copy pathTaskContentCell.h
File metadata and controls
24 lines (20 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// TaskContentCell.h
// Coding_iOS
//
// Created by 王 原闯 on 14-8-19.
// Copyright (c) 2014年 Coding. All rights reserved.
//
#define kCellIdentifier_TaskContent @"TaskContentCell"
#import <UIKit/UIKit.h>
#import "Task.h"
@interface TaskContentCell : UITableViewCell<UITextViewDelegate>
@property (strong, nonatomic) Task *task;
@property (nonatomic,copy) void(^textValueChangedBlock)(NSString *);
@property (nonatomic,copy) void(^textViewBecomeFirstResponderBlock)();
@property (nonatomic,copy) void(^deleteBtnClickedBlock)(Task *);
@property (nonatomic,copy) void(^descriptionBtnClickedBlock)(Task *);
@property (nonatomic, copy) void (^addTagBlock)();
@property (nonatomic, copy) void (^tagsChangedBlock)();
+ (CGFloat)cellHeightWithObj:(id)obj;
@end