Im newby in Xcode
这些线条在操场上非常完美:
meinTfStr = "Hallo ihr lieben Stackoverflower könnt ihr helfen bitte"
var range1 = NSMakeRange(0, 6)
var range2 = NSMakeRange(6, 3)
var range3 = NSMakeRange(9,toend)
var plusStr = NSMutableAttributedString(string: meinTfStr)
plusStr.addAttribute(NSForegroundColorAttributeName, value: UIColor.brownColor(), range: NSMakeRange(0, start))
plusStr.addAttribute(NSForegroundColorAttributeName, value: UIColor.redColor(), range: NSMakeRange(start, len))
plusStr.addAttribute(NSForegroundColorAttributeName, value: UIColor.brownColor(), range: NSMakeRange((start+len),ende))
tf.attributedText = plusStr
在Xcode Project中复制后,我收到一个错误。我用//
标记了这些行,并发现错误出现在plusStr.addAttribute...
行中。
error: Undefined symbols for architecture i386: TFSs26_forceBridgeFromObjectiveCU__FTPSs9AnyObject_MQ__Q_", referenced from:
linker command failed with exit code 1 (use -v to see invocation)
我不明白为什么它在游乐场有效?
感谢所有答案!