My custom TableViewCell has a imageView defined in storyboard with frame(195, 16; 95,25)

But when I trying to access the frame at run time, it returns (0, 58, 0, 0) for all the outlets, not just the imageView, but UILabels too.
//CustomTableViewCell subclass
- (void)layoutSubviews{
[super layoutSubviews];
NSLog(@"%@", self.fiveStartForeground);
}
and this come out of console:
2012-09-27 18:57:46.563 200Pomodoros[11395:c07] <UIImageView: 0x7599640; frame = (0 58; 0 0); clipsToBounds = YES; opaque = NO; autoresize = TM+BM; layer = <CALayer: 0x759a0d0>>
but after a while, it gets normal again:
2012-09-27 18:58:48.025 200Pomodoros[11395:c07] <UIImageView: 0x7599640; frame = (195.5 16; 94.5 25); clipsToBounds = YES; opaque = NO; autoresize = TM+BM; layer = <CALayer: 0x759a0d0>>
I need to change the image frame (width) in
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
so that it looks like it's a 5 start rating thing. But the frame I get then is wrong.(0, 58, 0, 0)...