繁体   English   中英

UILabel在UITableViewCell中变为nil

[英]UILabel turns nil in UITableViewCell

我正在使用TTTAttributedLabel替换tableView部分1中的UITableViewCell的textLabel。但是,TTTAttributedLabel在滚动时返回nil,导致标签的文本更改为第1部分中第一个单元格的文本。

请问您能告诉我如何防止这种情况发生?

提前致谢。

XcodeDev

- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *cellID = @"cellID";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];

    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID] autorelease];
        if (indexPath.section == 1) {
            if ([cell viewWithTag:05] == nil) {
                TTTAttributedLabel *label = [[[TTTAttributedLabel alloc] initWithFrame:CGRectMake(15, 5, 270, 30)] autorelease];
                [label setTag:05];
                [label setTextColor:[UIColor colorWithRed:0 green:0 blue:0 alpha:0.75]];
                [label setBackgroundColor:[UIColor clearColor]];
                [cell addSubview:label];
            }
        }
    }

    if (indexPath.section == 0) {
        NSArray *array = [NSArray arrayWithObjects:@"Likes", @"Posts", @"Comments", nil];
        [cell.textLabel setText:[array objectAtIndex:indexPath.row]];
        [cell setBackgroundColor:[UIColor whiteColor]];
        [cell.textLabel setTextColor:[UIColor colorWithRed:0 green:0 blue:0 alpha:0.75]];
        [cell.textLabel setFont:[UIFont boldSystemFontOfSize:cell.textLabel.font.pointSize]];
    }
    else if (indexPath.section == 1) {
        TBNotification *notif = [notifications objectAtIndex:indexPath.row];

        if ([notif.behavior isEqualToString:@"like"]) {

            NSMutableString *str = [NSMutableString string];

            [str appendString:[[notif actor] stringByAppendingFormat:@" liked your post %@", notif.postTitle]];

            TTTAttributedLabel *label = (TTTAttributedLabel *) [cell viewWithTag:05];

            [label setText:str afterInheritingLabelAttributesAndConfiguringWithBlock:^NSMutableAttributedString *(NSMutableAttributedString *mutableAttributedString) {
                NSRange stringRange = NSMakeRange(0, [mutableAttributedString length]);

                NSRegularExpression *regexp = NameRegularExpression();
                NSRange nameRange = [regexp rangeOfFirstMatchInString:[mutableAttributedString string] options:0 range:stringRange];
                UIFont *boldSystemFont = [UIFont boldSystemFontOfSize:16]; 
                CTFontRef boldFont = CTFontCreateWithName((CFStringRef)boldSystemFont.fontName, boldSystemFont.pointSize, NULL);
                if (boldFont) {
                    [mutableAttributedString addAttribute:(NSString *)kCTFontAttributeName value:(id)boldFont range:nameRange];
                    CFRelease(boldFont);
                }

                [mutableAttributedString replaceCharactersInRange:nameRange withString:[[mutableAttributedString string] substringWithRange:nameRange]];

                stringRange = [[mutableAttributedString string] rangeOfString:notif.postTitle];

                boldSystemFont = [UIFont boldSystemFontOfSize:16]; 
                boldFont = CTFontCreateWithName((CFStringRef)boldSystemFont.fontName, boldSystemFont.pointSize, NULL);
                if (boldFont) {
                    [mutableAttributedString addAttribute:(NSString *)kCTFontAttributeName value:(id)boldFont range:stringRange];
                    CFRelease(boldFont);
                }

                [mutableAttributedString replaceCharactersInRange:stringRange withString:[[mutableAttributedString string] substringWithRange:stringRange]];
                return mutableAttributedString;
            }];
        }
        else if ([notif.behavior isEqualToString:@"new_follow"]) {

            NSMutableString *str = [NSMutableString string];

            [str appendString:[[notif actor] stringByAppendingString:@" is now following you."]];

            TTTAttributedLabel *label = (TTTAttributedLabel *) [cell viewWithTag:05];

            [label setText:str afterInheritingLabelAttributesAndConfiguringWithBlock:^NSMutableAttributedString *(NSMutableAttributedString *mutableAttributedString) {
                NSRange stringRange = NSMakeRange(0, [mutableAttributedString length]);

                NSRegularExpression *regexp = NameRegularExpression();
                NSRange nameRange = [regexp rangeOfFirstMatchInString:[mutableAttributedString string] options:0 range:stringRange];
                UIFont *boldSystemFont = [UIFont boldSystemFontOfSize:16]; 
                CTFontRef boldFont = CTFontCreateWithName((CFStringRef)boldSystemFont.fontName, boldSystemFont.pointSize, NULL);
                if (boldFont) {
                    [mutableAttributedString addAttribute:(NSString *)kCTFontAttributeName value:(id)boldFont range:nameRange];
                    CFRelease(boldFont);
                }

                [mutableAttributedString replaceCharactersInRange:nameRange withString:[[mutableAttributedString string] substringWithRange:nameRange]];

                return mutableAttributedString;
            }];
        }
        else if ([[notif behavior] isEqualToString:@"new_comment"]) {
            NSMutableString *str = [NSMutableString string];

            [str appendString:[[notif actor] stringByAppendingFormat:@" commented on your post %@", notif.postTitle]];

            TTTAttributedLabel *label = (TTTAttributedLabel *) [cell viewWithTag:05];

            [label setText:str afterInheritingLabelAttributesAndConfiguringWithBlock:^NSMutableAttributedString *(NSMutableAttributedString *mutableAttributedString) {
                NSRange stringRange = NSMakeRange(0, [mutableAttributedString length]);

                NSRegularExpression *regexp = NameRegularExpression();
                NSRange nameRange = [regexp rangeOfFirstMatchInString:[mutableAttributedString string] options:0 range:stringRange];
                UIFont *boldSystemFont = [UIFont boldSystemFontOfSize:16]; 
                CTFontRef boldFont = CTFontCreateWithName((CFStringRef)boldSystemFont.fontName, boldSystemFont.pointSize, NULL);
                if (boldFont) {
                    [mutableAttributedString addAttribute:(NSString *)kCTFontAttributeName value:(id)boldFont range:nameRange];
                    CFRelease(boldFont);
                }

                [mutableAttributedString replaceCharactersInRange:nameRange withString:[[mutableAttributedString string] substringWithRange:nameRange]];

                stringRange = [[mutableAttributedString string] rangeOfString:notif.postTitle];

                boldSystemFont = [UIFont boldSystemFontOfSize:16]; 
                boldFont = CTFontCreateWithName((CFStringRef)boldSystemFont.fontName, boldSystemFont.pointSize, NULL);
                if (boldFont) {
                    [mutableAttributedString addAttribute:(NSString *)kCTFontAttributeName value:(id)boldFont range:stringRange];
                    CFRelease(boldFont);
                }

                [mutableAttributedString replaceCharactersInRange:stringRange withString:[[mutableAttributedString string] substringWithRange:stringRange]];
                return mutableAttributedString;
            }];
        }
    }

    [cell setAccessoryView:[[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"chevron"]] autorelease]];

    return cell;
}

在您的代码中,仅当indexPath.section == 1时才将TTTAttributedLabel添加到单元格中; 但是,您只使用一个标识符“cellID”来使可重用单元出列。 因此,当你打电话:

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];

不保证单元格始终为TTTAttributedLabel 您需要根据indexPath.section == 1更改cellID。 例如,这可能解决了这个问题:

static NSString *cellID = @"cellID";
static NSString *cellIDWithLabel = @"cellID_label";
UITableViewCell *cell;

if(indexPath.section != 1) {
  cell = [tableView dequeueReusableCellWithIdentifier:cellID];
}
else {
  cell = [tableView dequeueReusableCellWithIdentifier:cellIDWithLabel];
}

希望这可以帮助!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM