我目前有一个带有自定义单元格的tableView,我称之为AMPFeedbackTableViewCell.细胞加载完全很好.
这是代码:
-(UITableViewCell*) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:@"feedbackCell"];
AMPFeedbackTableViewCell* cell = (AMPFeedbackTableViewCell*) [tableView dequeueReusableCellWithIdentifier:@"feedbackCell"];
if (cell == nil)
{
cell = [[AMPFeedbackTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"feedbackCell"];
cell.currentFeedback = [[AMPFeedback alloc] init];
cell.currentFeedback = [_feedbackArray objectAtIndex:indexPath.row];
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"FeedbackTableCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
我试图在它开始之前将某些东西传递给单元格,就像在这种情况下它是_currentFeedback.自定义单元格有一个AMPFeedback项目,我希望它在加载之前设置它.所以我可以像这样使用它:(注意:这是在AMPFeedbackTableViewCell中
- (void)awakeFromNib
{
// Initialization code
if (_currentFeedback != nil)
[self loadImages];
}
但是,_currentFeedback总是为零.有没有办法可以通过它然后调用awakeFromNib?
提前致谢
最佳答案 如果你不坚持在awakefromNib中这样做,那么还有另一种方法(也许更好):
在AMPFeedbackTableViewCell.h中
@property (strong) AMPFeedBack *currentFeedback;
在AMPFeedbackTableViewCell.m中
@synthesize currentFeedback = _currentFeedback;
- (void)setCurrentFeedback:(AMPFeedback *)feedback {
if (feedback==nil) return;
_currentFeedback = feedback;
[self loadImages];
}
然后我们可以直接在主代码中触发它:
-(UITableViewCell*) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
AMPFeedbackTableViewCell* cell = (AMPFeedbackTableViewCell*) [tableView dequeueReusableCellWithIdentifier:@"feedbackCell"];
if (cell == nil) {
cell = [[AMPFeedbackTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"feedbackCell"];
}
cell.currentFeedback = [_feedbackArray objectAtIndex:indexPath.row];
希望能帮助到你.