SYBListWeiBoCellView is a custom cell and it has a UITextView. I set the font of the UITextview in storyboard, and make a IBOutlet in SYBListWeiBoCellView called repoText. When I get the SYBListWeiBoCellView through
SYBListWeiBoCellView *cell = [tableView dequeueReusableCellWithIdentifier:@"weiboCell"];
UIFont *font = cell.repoText.font;
the font turns nil, it should be the value I set in storyboard.
here https://stackoverflow.com/a/19115950/1130175 someone say it's a bug.