1

我有一个 NSTableView,它在一列中显示文件的路径。当用户调整 tableview 的大小时,我希望调整路径名(例如 /Users/name/testfile.m)的大小,但我希望路径名的结尾(例如 ...name/testfile.m)可见而不是默认情况下,路径的开始(例如 /Users/test/te...)。我编写了一个函数,它成功地完成了我想做的事情,但是当用户缩放 tableview 时,tableview 在重绘时会闪烁。我认为必须有一个更好、更优雅的算法来执行此操作,但我查看了 NSString 和Stackoverflow的文档,但找不到任何能提供更好解决方案的东西。如果有人对此问题有更优雅的解决方案,将不胜感激。谢谢!干杯,特隆德

我目前的功能:

-(NSString *) truncateString:(NSString *) myString withFontSize:(int) myFontSize withMaxWidth:(NSInteger) maxWidth
{
    // Get the width of the current string for a given font
    NSFont *font = [NSFont systemFontOfSize:myFontSize];
    CGSize textSize = NSSizeToCGSize([myString sizeWithAttributes:[NSDictionary     dictionaryWithObject:font forKey: NSFontAttributeName]]);
    NSInteger lenURL =(int)textSize.width;

    // Prepare for new truncated string
    NSString *myStringShort;
    NSMutableString *truncatedString = [[myString mutableCopy] autorelease];

    // If the available width is smaller than the string, start truncating from first character
    if (lenURL > maxWidth)
    {
        // Get range for first character in string
        NSRange range = {0, 1};

        while ([truncatedString sizeWithAttributes:[NSDictionary dictionaryWithObject:font forKey: NSFontAttributeName]].width  > MAX(TKstringPad,maxWidth)) 
        {
            // Delete character at start of string
            [truncatedString deleteCharactersInRange:range];
        }     
        myStringShort = [NSString stringWithFormat:@"...%@",truncatedString];
    }
    else
    {
        myStringShort=myString;
    }
    return myStringShort;
}
4

1 回答 1

5

典型的方法很简单:

[tableViewCell setLineBreakMode:NSLineBreakByTruncatingHead];

正如 Dondragmer 所指出的,这个属性也可以在 Xcode 的 NIB 编辑器中设置。

于 2012-04-25T22:35:30.383 回答