代码的方法可以创建UIStackView么?
UIStackView *myStackView = [[UIStackView alloc]init];
myStackView.frame = CGRectMake(0, 0, self.view.bounds.size.width-20, self.view.bounds.size.height-370);
myStackView.backgroundColor = [UIColor redColor];
[self.view addSubview:myStackView];
代码如上,但是并不能看到红色的View被创建,请问是哪里有问题呢?