我有一个绿色矩形,但是当我运行应用程序时它不会显示。 这是我的代码:
- (void) makeBlockg {
x = arc4random()%(320) + 1;
CGRect block = CGRectMake(x, 0, 100, 70);
greenblock.frame = block;
greenblock.self.backgroundColor = [UIColor greenColor];
[self.view addSubview:greenblock];
}
答案 0 :(得分:0)
这段代码对我来说很好。您确定使用greenblock = [[UIView alloc] init]
正确初始化greenblock吗?如果不这样做,那么greenblock就是nil,而不是一个空的UIView对象。