1

我有一个程序,我在其中从 twitter 获取推文并将它们显示在UITableviewcell. 现在的问题是我必须将所有推特名称设为粗体和 bule,并在原始推文中显示它们,并使用 bule 和粗体名称。例如我有这样的推文

MT @OraTV: SNEAK PEEK:@tomgreenlive @TheoVon & @DavidBegnaud谈论麦莉#twerking #Batfleck &more

所以所有的名字都以@ should be bold and bule.

我使用此代码提取所有以 @ 开头的名称,但不知道如何将它们加粗并在单个 uitableviewcell 中显示

NSString * aString =twitterMessage
NSMutableArray *substrings = [NSMutableArray new];
NSScanner *scanner = [NSScanner scannerWithString:aString];
[scanner scanUpToString:@"@" intoString:nil]; 
while(![scanner isAtEnd]) {
NSString *substring = nil;
[scanner scanString:@"@" intoString:nil]; 
if([scanner scanUpToString:@" " intoString:&substring]) {

    [substrings addObject:substring];
}
[scanner scanUpToString:@"@" intoString:nil]; 
}
4

2 回答 2

0

那么您已经正确提取了所有名称吗?如果是这样,似乎NSAttributedString就是您想要的。更多信息在这里

像这样:[str setTextColor:[UIColor blueColor] range:NSMakeRange(0,5)];
对于粗体文本,使用[UIFont boldSystemFontOfSize:fontSize]. 请参阅上面第二个链接中的示例。

于 2013-08-29T18:33:30.340 回答
0

您必须通过在 2 种字体和颜色之间滑动来构建 NSAttributedString。

如果您能够检测到它们,您可能应该通过用已知标记(例如:@aName)将它们包围来替换您的名字。然后,解析字符串以构建一个 NSAttributedString。

您可以使用此代码(未经测试,您可能需要调整):

// String to parse
NSString *markup = @"MT <color>@OraTV</color>: SNEAK PEEK: <color>@tomgreenlive</color>...";

// Names font and color
UIFont *boldFont = [UIFont boldSystemFontOfSize:15.0f];
UIColor *boldColor = [UIColor blueColor];

// Other text font and color
UIFont *stdFont = [UIFont systemFontOfSize:15.0f];
UIColor *stdColor = [UIColor blackColor];

// Current font and color
UIFont *currentFont = stdFont;
UIColor *currentColor = stdColor;

// Parse HTML string
NSMutableAttributedString *aString = [[NSMutableAttributedString alloc] initWithString:@""];
NSRegularExpression *regex = [[NSRegularExpression alloc] initWithPattern:@"(.*?)(<[^>]+>|\\Z)"
                                                                  options:NSRegularExpressionCaseInsensitive|NSRegularExpressionDotMatchesLineSeparators
                                                                    error:nil];
NSArray *chunks = [regex matchesInString:markup options:0 range:NSMakeRange(0, [markup length])];

for (NSTextCheckingResult* b in chunks)
{
    NSArray *parts = [[markup substringWithRange:b.range] componentsSeparatedByString:@"<"];

    NSDictionary *attrs = [NSDictionary dictionaryWithObjectsAndKeys:currentFont,NSFontAttributeName,currentColor,NSForegroundColorAttributeName,nil];
    [aString appendAttributedString:[[NSAttributedString alloc] initWithString:[parts objectAtIndex:0] attributes:attrs]];

    if([parts count] > 1)
    {
        NSString *tag = (NSString *)[parts objectAtIndex:1];
        if([tag hasPrefix:@"color"])
        {
            currentFont = boldFont;
            currentColor = boldColor;
        }
        else if([tag hasPrefix:@"/color"])
        {
            currentFont = stdFont;
            currentColor = stdColor;
        }
    }
}

希望有帮助。

西里尔

于 2013-08-29T18:40:23.607 回答