网上搜索了很多,不知道是我搜索技术问题还是怎么着,就是没有找到,不过经过自己的努力,还是发现了解决的办法,因为这种情况大多数是自定的UITableviewCell,那么肯定知道如何自己的自定的cell里面如何修改cell上面的元素,其实原理很简单,就是重新设置一下元素的frame大小就好了,我讲自己的代码贴到下面希望能够给大家一个指引。如果问题,可以联系我跟我继续探讨。
attentionListCell.h1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#import <UIKit/UIKit.h>
@interface attentionListCell : UITableViewCell @property (strong, nonatomic) IBOutlet UIImageView *imageViewPic; @property (strong, nonatomic) IBOutlet UILabel *name; @property (strong, nonatomic) IBOutlet UILabel *index; @property (strong, nonatomic) IBOutlet UILabel *rank;
@property (copy, nonatomic) UIImage *listImage; @property (copy, nonatomic) NSString *listName; @property (copy, nonatomic) NSString *listIndex; @property (copy, nonatomic) NSString *listRank;
@property (strong, nonatomic) UIImageView *checkImageView; @property (nonatomic) BOOL checked; - (void) setChecked:(BOOL)checked; @end
|
attentionListCell.m1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
#import "attentionListCell.h"
@implementation attentionListCell
@synthesize listImage = _listImage; @synthesize listName = _listName; @synthesize listIndex = _listIndex; @synthesize listRank = _listRank;
@synthesize checkImageView = _checkImageView; @synthesize checked = _checked;
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]; if (self) { } return self; }
- (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated];
}
-(void) setListImage:(UIImage *)value { if(![value isEqual:_listImage]) { _listImage = [value copy]; self.imageViewPic.image = _listImage; } }
-(void) setListName:(NSString *)value { if(![value isEqualToString:_listName]) { _listName = [value copy]; self.name.text = _listName; } }
-(void) setListIndex:(NSString *)value { if(![value isEqualToString:_listIndex]) { _listIndex = [value copy]; self.index.text = _listIndex; }
}
-(void) setListRank:(NSString *)value { if(![value isEqualToString:_listRank]) { _listRank = [value copy]; self.rank.text = _listRank; } }
- (void) setCheckImageViewCenter:(CGPoint)pt alpha:(CGFloat)alpha animated:(BOOL)animated { if (animated) { [UIView beginAnimations:nil context:nil]; [UIView setAnimationBeginsFromCurrentState:YES]; [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut]; [UIView setAnimationDuration:0.3]; _checkImageView.center = pt; _checkImageView.alpha = alpha; [UIView commitAnimations]; } else { _checkImageView.center = pt; _checkImageView.alpha = alpha; } }
-(void) setEditing:(BOOL)editing animated:(BOOL)animated{
if (self.editing == editing) { return; } [super setEditing:editing animated:animated]; if (editing) {
[self.imageViewPic setFrame:CGRectMake(self.imageViewPic.frame.origin.x + 30, self.imageViewPic.frame.origin.y, self.imageViewPic.frame.size.width, self.imageViewPic.frame.size.height)]; [self.name setFrame:CGRectMake(self.name.frame.origin.x + 30, self.name.frame.origin.y, self.name.frame.size.width, self.name.frame.size.height)]; [self.index setFrame:CGRectMake(self.index.frame.origin.x + 30, self.index.frame.origin.y, self.index.frame.size.width, self.index.frame.size.height)]; [self.rank setFrame:CGRectMake(self.rank.frame.origin.x + 30, self.rank.frame.origin.y, self.rank.frame.size.width, self.rank.frame.size.height)];
} else {
} }
- (void) setChecked:(BOOL)checked { if (checked) { _checkImageView.image = [UIImage imageNamed:@"Selected.png"]; self.backgroundView.backgroundColor = [UIColor colorWithRed:223.0/255.0 green:230.0/255.0 blue:250.0/255.0 alpha:1.0]; } else { _checkImageView.image = [UIImage imageNamed:@"Unselected.png"]; self.backgroundView.backgroundColor = [UIColor whiteColor]; } _checked = checked; }
@end
|