<hr>
HTMLのタグのように、基本的に水平セパレーターになるNSAttributedStringを作成するにはどうすればよいですか?
私はもう試した:
NSAttributedString *hr = [[NSAttributedString alloc] initWithHTML:
[NSData
dataWithBytes:"<html><body><hr>hi</body></html>"
length:strlen("<html><body><hr>hi</body></html>")]
documentAttributes:NULL];
ただし、<hr>
タグは表示されません。ただし、ビューに文字列を追加しても機能しますhi
。