我想更改视图控制器中视图的背景颜色。选择视图并打开属性检查器并没有显示出那么多。这里应该有一个背景选项。
尝试在onCreate
中使用ActivityCompat.postponeEnterTransition(this);
Picasso.with(this.getApplicationContext())
.load("https://goo.gl/oiyTor")
.noFade()
.fit()
.centerInside()
.error(R.drawable.user_placeholder_error)
.into(((ImageView) findViewById(R.id.game_view_image)), new Callback() {
@Override
public void onSuccess() {
ActivityCompat.startPostponedEnterTransition(targetActivity);
}
@Override
public void onError() {
ActivityCompat.startPostponedEnterTransition(targetActivity);
}
});
对其进行编码,但也没有工作,没有NSView的对象。
我做错了什么?我读到编码问题可能与更新版本的Xcode有关。 coding issue
答案 0 :(得分:1)
这已经受到质疑和回答了 Best way to change the background color for an NSView
这是OS X的代码
[self.view setWantsLayer:YES];
[self.view.layer setBackgroundColor:[[NSColor whiteColor] CGColor]];
答案 1 :(得分:0)