是否可以在 Appcelerator 中删除标签的文本?

Is it possible to strike-through a Label's text in Appcelerator?

是否可以在 Appcelerator 中对标签文本应用删除线?如果是,怎么做?

您可以使用属性字符串来代替标签。它提供了相当多的功能。

删除线示例如下:

var attr = Ti.UI.createAttributedString({
    text: 'TEXT THAT NEEDS STRIKETHROUGH',
    attributes: [
        {
            type: Ti.UI.ATTRIBUTE_STRIKETHROUGH_STYLE,
            value: Ti.UI.ATTRIBUTE_UNDERLINE_STYLE_THICK, // Ignored by Android only displays a single line
            range: [text.indexOf('hyperloop'), ('hyperloop').length]
        }
    ]
});

例子取自Attributed String Guide which is on the Appcelerator Documentation