-3

如何以编程方式创建 UIView?

4

1 回答 1

1

通常是这样的:

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

Apple 的 UIView 文档将为您提供帮助。

于 2012-08-02T14:15:42.093 回答