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 设置为字符串数组中最宽字符串(字形)的宽度。 我的问题是:确定总“字形宽度”…
粗体&单个 UILabel 中的非粗体文本?
如何在 uiLabel 中同时包含粗体和非粗体文本? 我不想使用 UIWebView ..我也读过使用 NSAttributedString 可能可以实现这一点,但我不知道如何使用它…
如何使用 NSAttributedString?
NSString 或 NSMutableStrings 中不可能有多种颜色。所以我听说过一些关于 NSAttributedString 是随 iPad SDK 3.2(或 3.2 左右)引入的,自 iPhone S…
搜索具有自定义属性的 NSAttributedString 并将其删除?怎样做?
我在 NSTextView 中有一个占位符字符串,一个空格字符,我想在将来删除它。我的策略是为 NSAttributedString 分配一个自定义属性,并在 [NSTextView s…