iShawn 发表于 2013-1-4 01:35:47

CheckBox UITableViewCell

<div id="cnblogs_post_body">一个简单的自定义CheckBox UITableViewCell
效果:
http://pic002.cnblogs.com/images/2012/478183/2012121623233261.png
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
页: [1]
查看完整版本: CheckBox UITableViewCell