UITabView中的UILabel有时无法显示

时间:2015-02-27 09:16:27

标签: uitableview ios8

我在.m文件中设置了

- (UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{

    static NSString *cellIdentifier = @"Cell";

    documentCustomCell *cell = (documentCustomCell*)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    if (cell == nil){
        cell = [[documentCustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
    }
 cell.titleText.text = cellFileName;
 [cell.titleText setNeedsDisplay];
}

请帮忙 做PDF应用程序

0 个答案:

没有答案