天天看點

從nib加載cell,建立cell為nib

                NSArray *objects = [[NSBundle

mainBundle] loadNibNamed:@"MsgCell"

owner:self options:nil];

                for (NSObject *o

in objects) {

                    if ([o

isKindOfClass:[MsgCell class]]) {

                        cell = (MsgCell *)o;

                        break;

                    }

                }

繼續閱讀