1

我有一个绿色矩形,但是当我运行应用程序时它不会显示。这是我的代码:

- (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];

}
4

1 回答 1

0

这段代码对我来说很好。你确定你用 正确初始化绿块greenblock = [[UIView alloc] init]吗?如果不这样做,greenblock 是 nil,而不是一个空的 UIView 对象。

于 2012-11-08T07:57:57.753 回答