NSArray *objects = [[NSBundle
mainBundle] loadNibNamed:@"MsgCell"
owner:self options:nil];
for (NSObject *o
in objects) {
if ([o
isKindOfClass:[MsgCell class]]) {
cell = (MsgCell *)o;
break;
}
}
NSArray *objects = [[NSBundle
mainBundle] loadNibNamed:@"MsgCell"
owner:self options:nil];
for (NSObject *o
in objects) {
if ([o
isKindOfClass:[MsgCell class]]) {
cell = (MsgCell *)o;
break;
}
}