您好,我想問一下如何以編程方式創建多個視圖並將它們顯示在屏幕上,我試過這個,但有些東西缺失。以編程方式創建多個視圖
int x,y;
x= 0;
y=50;
for (int i=0; i<4; i++)
{
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(x, y, 300, 100)];
view.backgroundColor = [UIColor redColor];
[self.view addSubview: view];
y+=40;
}
你有這個代碼的哪個方法? –
你使用哪種方法?我試圖在swift中創建多個UIViews,但我認爲這樣做會覆蓋它並從superview中刪除前一個。 – TheeBen