TTT 归属标签多色字体帮助
-(UITableViewCell*) makeLikeCell { // Load the top-level objects from the custom cell XIB. NSArray *topLevelObjects = [[NSBundle mainBundle]…
将可点击的 URL 添加到我的 Cocoa 视图 - 我做错了吗?
我需要在我的视图中动态设置可点击 URL 的文本和值。 我已经使用 NSTextView 工作了,但是设置字体似乎非常复杂,而且我不知道如何使文本居中: NSMut…
使用 NSAttributedString (OAExtensions) 中的 initWithHTML
我正在使用 Omni iOS TextEditor available @ github,并且我想使用 NSAttributedString (OAExtensions) 中的 initWithHTML 方法,并在 EditableFrame…
NSMutableAttributedString 和添加文本链接
我有一个 NSMutableAttributedString,现在我想将链接添加到文本的某些部分。我如何添加到文本的链接,以便当用户触摸文本时我可以触发一些操作。我正…
iOS 3.1.3 上的 NSMutableAttributedString
我正在处理一个非常奇怪的情况。我正在将属性字符串实现到我的 iOS 应用程序中,并且收到警告,它们在 iOS 3.2 及更高版本中可用。因为我在 iPhone 上…
停止 enumerateAttribute:inRange:options:usingBlock: 使用 nil 值调用我的块
我在没有 kCTFontAttributeName 范围的现有 NSAttributedString 上调用以下选择器: [attributedString enumerateAttribute:(NSString *) kCTFontAttr…
如何抚摸 NSAttributedString 的_outside_?
我一直在 NSAttributedString 对象上使用 NSStrokeWidthAttributeName 来在绘制文本时在文本周围放置轮廓。问题在于笔划位于文本的填充区域内。当文本…
NSAttributedString 中的段落是如何定义的?
我看到有一个属性名称(NSParagraphStyleAttributeName)用于将段落样式应用于 Cocoa 中的文本。文本存储在 NSAttributedString 中,但是该字符串中的…
存储 NSAttributedString 核心数据
我正在尝试将 NSAttributedString 存储到核心数据 SQL 存储中。 我将属性设置为“可转换”,它是可选的,它不是瞬态的或索引的,并且值转换器名称设置…
将 NSAttributedString 绘制到非矩形 CGPath 中?
我在 iOS 3.2 应用程序 (iPad) 中生成了一个相当复杂的 NSAttributedString,包括 CTParagraphStyleSetting 类型的格式化选项,特别是 kCTParagraphSt…
iphone/ipad:究竟如何使用 NSAttributedString?
是的,很多人都在谈论 iPhone/iPad 中的富文本,并且很多人都知道 NSAttributedString。 但是如何使用NSAttributedString呢?我搜索了很多时间,没有…
如何清除 NSMutableAttributedString 的内容?
我有一个 ivar,它在对象的 init 中进行分配: attString = [[NSMutableAttributedString alloc] init] 在循环中,我想清除 attString 的内容并重新使…
如何正确确定属性字符串的宽度
我想要做的:使用 NSLayoutManager 布局文本并将其 NSTextContainer 设置为字符串数组中最宽字符串(字形)的宽度。 我的问题是:确定总“字形宽度”…