-1
私は、AppKitで動作するHandyUIKit String拡張を手に入れようとしています。NSFontでUIFont .withSizeに相当する
のAppKitとNSFontで
var font : UIFont
font.withSize(font.pointSize * scriptedTextSizeRatio)
の等価とは何ですか?ここで
var font : NSFont
font.withSize(font.pointSize * scriptedTextSizeRatio)
は、私が働いているコードのセクションです:
let capturedSubstring = unprocessedString.attributedSubstring(from: match.range(at: 1)).mutableCopy() as! NSMutableAttributedString
let captureFullRange = NSRange(location: 0, length: capturedSubstring.length)
capturedSubstring.addAttribute(.font, value: font.withSize(font.pointSize * scriptedTextSizeRatio), range: captureFullRange)
AppKit in Cocoa?どうやって? –