|
<div id="cnblogs_post_body">一个简单的自定义CheckBox UITableViewCell
效果:

UITableViewCheckBoxCell.h
<div class="cnblogs_code"> 1 // 2 // UITableViewCheckBoxCell.h 3 // TableViewStudy 4 // 5 // Created by Shawn on 12/16/12. 6 // Copyright (c) 2012. All rights reserved. 7 // 8 9 #import <UIKit/UIKit.h>10 11 @interface UITableViewCheckBoxCell : UITableViewCell12 13 @property (nonatomic) BOOL isChecked;14 15 - (id)initWithReuseIdentifier:(NSString *)reuseIdentifier;16 17 @end |
|