问题在于这
font是可选的,因为便利构造函数现在返回可选值,因此
font需要将其解包为字典中的值:
if let actualFont = font { let textFontAttributes = [ NSFontAttributeName: actualFont, NSForegroundColorAttributeName: textColor, NSParagraphStyleAttributeName: textStyle ] text.drawInRect(NSOffsetRect(textRect, 0, 1), withAttributes: textFontAttributes)}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)