NSSize textSize = [aTextLayer.string sizeWithAttributes:[NSDictionary dictionaryWithObjectsAndKeys:@"Bank Gothic Medium",NSFontNameattribute,[NSNumber numberWithfloat:aTextLayer.FontSize],NSFontSizeAttribute,nil]];解决方法 通过Application Kit Additions为NSAttributedString授予-size方法.
NSDictionary* attributes = [NSDictionary dictionaryWithObjectsAndKeys: @"Bank Gothic Medium",nil];NSAttributedString* attributedString = [[NSAttributedString alloc] initWithString:aTextLayer.string attributes:attributes];NSSize size = attributedString.size;总结
以上是内存溢出为你收集整理的objective-c – Cocoa从字体中获取字符串宽度(以像素为单位)全部内容,希望文章能够帮你解决objective-c – Cocoa从字体中获取字符串宽度(以像素为单位)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)