我有一个自定义表格视图单元格(命名为MimoCell),它有一个准备单元格的方法,如标题,副标题,图像和内容。
当我尝试通过传递它想要接收的对象来访问此方法时,我得到一个无法识别的选择器发送到实例错误。这里复杂的事情是因为我通过引用传递了这个对象,我怀疑这是导致错误的原因。 这是单元格
MimoCell.h
#import <UIKit/UIKit.h>
#import "Mimo.h"
@interface MimoCell : UITableViewCell
@property (nonatomic)BOOL flagFriendCell;
@property (nonatomic)BOOL flagImageMimo;
@property (nonatomic,strong)UILabel *detailLabel;
@property (nonatomic,strong)UIButton *mimoImageBtn;
@property (nonatomic,strong)UIImage *mimoImage;
-(void)setMimo:(Mimo**)theMimo;
@end
这是MimoCell.m
#import "MimoCell.h"
#import "currentUser.h"
@implementation MimoCell
{
Mimo *mimo;
currentUser *thisUser;
NSTimer *syncCellTimer;
}
@synthesize detailLabel;
@synthesize flagFriendCell;
@synthesize flagImageMimo;
@synthesize mimoImageBtn;
@synthesize mimoImage;
-(void)setMimo:(Mimo *__autoreleasing *)theMimo{
mimo = *theMimo;
if(mimo.flagIsImage)
flagImageMimo = NO;
else
flagImageMimo = YES;
if([mimo.senderID isEqualToString:thisUser.userID])
flagFriendCell = NO;
else
flagFriendCell = YES;
}
- (void)awakeFromNib {
// Initialization code
thisUser = [currentUser instance];
detailLabel = [[UILabel alloc]initWithFrame:CGRectMake(30.0, 87.0, 200.0, 12)];
[detailLabel setFont:[UIFont fontWithName:@"Helveltica" size:11]];
[self.textLabel setTextAlignment:NSTextAlignmentCenter];
syncCellTimer = [NSTimer timerWithTimeInterval:1 target:self selector:@selector(syncCell) userInfo:nil repeats:YES];
[syncCellTimer fire];
mimoImageBtn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
}
这就是我处理它的地方
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIdentifier = @"mimoCell";
MimoCell *cell = (MimoCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil){//It's never nil
NSArray *nib = [[NSBundle mainBundle]loadNibNamed:@"MimoCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
Mimo *workingMimo = [arrayOfMimos objectAtIndex:indexPath.row];
[cell setMimo:&workingMimo];//RIGHT HERE I GET THE UNRECOGNIZED SLECTOR ERROR
return cell;
}
我做错了什么?我真的想通过引用传递MIMO对象......
答案 0 :(得分:0)
如果要将自定义笔尖加载到单元格,请在viewDidLoad
方法
UINib *nib = [UINib nibWithNibName:@"MimoCell" bundle:nil];
[tableViewName registerNib:nib forCellReuseIdentifier:@"MimoCell"];
我认为这就是你所缺少的。
答案 1 :(得分:0)
好的,我发现了问题。我们可以看到,cellForRowAtIndexPath:上的cell类确实来自我的MimoCell类。但错误是生成UITableCell类错误。这告诉我,在某个地方,我的细胞是一个简单的UITableCell。
IT是故事板。
我没有在故事板上设置课程。