Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我很好奇我是否可以使用 NSBezierPath 绘制一个 NSRect,然后用一些条纹图案填充它,使它看起来像下图?
任何形式的帮助都非常感谢!
你可以利用
+ (NSColor *)colorWithPatternImage:(NSimage *)image
并用颜色填充矩形。
[[NSColor colorWithPatternImage: patternedImage] set]; [NSBezierPath fillRect:yourRect];
是的——只需创建一个带有图案图像的 NSColor 并用该颜色填充。