如何在iOS中以编程方式创建UIView?

时间:2012-08-02 13:18:38

标签: ios uiview

如何以编程方式创建UIView?

1 个答案:

答案 0 :(得分:1)

通常是这样的:

UIView* myView = [[UIView alloc] initWithFrame:myFrame];
// View setup
[mySuperview addSubview:myView];

Apple's UIView documentation会帮助你。