5

NSAttributedString の属性を取得するにはどうすればよいですか?

NSMutableDictionaries のすべての属性を使用しenumerateAttributesInRange:NSMakeRange(0, str.length)て保存することを考えましたが、より良い方法が存在するかどうかを知りたいです。

EDIT------私の問題は、私が持っていて、NSAttributedStringその属性でこの関数を使用したいということです...

CTFramesetterSuggestFrameSizeWithConstraints(framesetter,range, __ATTRIBUTES__, size , NULL);
4

2 に答える 2

1
 NSDictionary *attributesFromString = [string attributesAtIndex:0 longestEffectiveRange:nil inRange:NSMakeRange(0, string.length)];
于 2016-11-07T10:22:01.603 に答える
-1
UITextView *t = [[UITextView alloc] init];
[t setAttributedText:a];
t.typingAttributtes
于 2016-05-18T11:44:25.640 に答える