2014-03-03 28 views
0

我很困惑!,这不是我第一次创建自定义单元格,但是这次UILabel没有出现我不知道问题在哪里?没有出现自定义单元格的UIlabel

这个自定义单元格Cell.m

 mainView = [[UIView alloc] initWithFrame:CGRectZero]; 
     mainView.backgroundColor = [UIColor colorWithRed:249.0/255.0 green:249.0/255.0 blue:249.0/255.0 alpha:1.0]; 
     profile = [[UIImageView alloc] initWithFrame:CGRectZero]; 
     profile.layer.masksToBounds = YES; 
     profile.layer.cornerRadius = 22.5; 
     profile.layer.borderColor = [UIColor whiteColor].CGColor; 
     profile.layer.borderWidth = 1.0f; 
     profile.clipsToBounds = YES; 
     tweet_is = [[UILabel alloc] initWithFrame:CGRectZero]; 
     tweet_is.font = [UIFont fontWithName:@"HelveticaNeue-Thin" size:20]; 
     tweet_is.backgroundColor = [UIColor clearColor]; 
     tweet_is.textColor = [UIColor blackColor]; 
     [self.mainView addSubview:tweet_is]; 
     [self.mainView addSubview:profile]; 
     [self.contentView addSubview:self.mainView]; 

-(void)layoutSubviews { 

    [super layoutSubviews]; 
    self.mainView.frame = CGRectMake(0, 0, self.frame.size.width, self.frame.size.height - 10.0f); 
    self.profile.frame = CGRectMake(15, 15, 45, 45); 
    self.tweet_is.frame = CGRectMake(30, 30, 300.0f, 300.0f); 

} 

这是的tableView

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    static NSString *CellIdentifier = @"Cell"; 
    Cell *cell = (Cell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 
    if (!cell) { 
     cell = [[Cell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; 
    } 
    cell.tweet_is.text = @"Not approve"; 
    return cell; 
} 
+0

我做了一个测试,以改变UILabel的背景颜色,它显示背景颜色没有文本! –

+0

标签在哪里 – meda

回答

1

改变这一行:

self.tweet_is.frame = CGRectMake(30, 30, 300.0f, 300.0f); 

设置self.tweet_is.frame = CGRectMake(30, 30, 300.0f, 30.0f);

如果你的单元格高度小于300(我认为是),那么你看不到文字。让我知道如果这有助于.. :)

+0

太好了,谢谢你的帮助 –

相关问题