mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
31 lines
1.3 KiB
TypeScript
31 lines
1.3 KiB
TypeScript
import formattedStringCommon = require("./formatted-string-common");
|
|
import spanModule = require("text/span");
|
|
import types = require("utils/types");
|
|
|
|
global.moduleMerge(formattedStringCommon, exports);
|
|
|
|
export class FormattedString extends formattedStringCommon.FormattedString {
|
|
public createFormattedStringCore() {
|
|
var mas = NSMutableAttributedString.alloc().init();
|
|
var i;
|
|
var spanStart = 0;
|
|
var spanLength = 0;
|
|
var spanText = "";
|
|
for (i = 0; i < this.spans.length; i++) {
|
|
var span = <spanModule.Span>this.spans.getItem(i);
|
|
spanText = types.toUIString(span.text);
|
|
spanLength = spanText.length;
|
|
span.updateSpanModifiers(this);
|
|
var attrDict = NSMutableDictionary.alloc().init();
|
|
var p;
|
|
for (p = 0; p < span.spanModifiers.length; p++) {
|
|
attrDict.setObjectForKey(span.spanModifiers[p].value, span.spanModifiers[p].key);
|
|
}
|
|
var nsAttributedString = NSMutableAttributedString.alloc().initWithStringAttributes(String(spanText), attrDict);
|
|
mas.insertAttributedStringAtIndex(nsAttributedString, spanStart);
|
|
spanStart += spanLength;
|
|
}
|
|
this._formattedText = mas;
|
|
}
|
|
}
|