Objective-c:查看背景图案

发布于 2024-10-11 09:44:55 字数 125 浏览 4 评论 0原文

视图中是否可以有一个可以重复 x 或 y 或两者的模式(例如网格)?有点像 css:

background-image: url(pattern.png); 背景重复:重复; //或者重复-x,重复-y,不重复;

Is it possible to have a pattern (say a grid) in a view that can be repeated x or y or both? Kind of like css:

background-image: url(pattern.png);
background-repeat: repeat; //or repeat-x, repeat-y, no repeat;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

嘿看小鸭子会跑 2024-10-18 09:44:55

以下代码将平铺背景图像:

- (void) viewDidLoad {
    [[self view] setBackgroundColor: [[UIColor alloc] initWithPatternImage: [UIImage imageNamed: @"background.png"]]];
    [super viewDidLoad];
}

The following code will tile a background image:

- (void) viewDidLoad {
    [[self view] setBackgroundColor: [[UIColor alloc] initWithPatternImage: [UIImage imageNamed: @"background.png"]]];
    [super viewDidLoad];
}
音盲 2024-10-18 09:44:55

是的。您可以将图像图案加载为颜色 ([NSColor withPatternImage:[NSImage imageNamed:@"pattern"]]),然后像常规颜色一样绘制它:

- (void)drawRect:(NSRect)dirtyRect {
    ...
    // Load the image through NSImage and set it as the current color.
    [[NSColor colorWithPatternImage:[NSImage imageNamed:@"pattern"]] set];

    // Fill the entire view with the image.
    [NSBezierPath fillRect:[self bounds]];
    ...
}

此代码将重复该图案整个视图,但您可以简单地进行 x 重复或 y 重复,并进行一些修改。


看看 NSColor类参考NSView 类参考 了解更多信息。

Yes. You can load an image pattern as a color ([NSColor withPatternImage:[NSImage imageNamed:@"pattern"]]) and then draw it as you would a regular color:

- (void)drawRect:(NSRect)dirtyRect {
    ...
    // Load the image through NSImage and set it as the current color.
    [[NSColor colorWithPatternImage:[NSImage imageNamed:@"pattern"]] set];

    // Fill the entire view with the image.
    [NSBezierPath fillRect:[self bounds]];
    ...
}

This code will repeat the pattern over the entirety of view, but you can have it simply x-repeat or y-repeat with a little modification.


Take a look at the NSColor Class Reference and the NSView Class Reference to learn more.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文