0

我是 IOS 开发新手,我需要在应用程序首次启动时动态加载内容(按钮)。任何人都可以帮我指导吗?我参加了培训,但不幸的是我没有学到这一点。我已经在 ViewController 中有一个方法,但是我如何在加载时执行该方法?

谢谢你的帮助。

4

1 回答 1

0

这是一个您可能会觉得有用的教程:http: //blog.austinlouden.com/post/47644627216/your-first-ios-app-100-programmatically

这是一个 2 部分教程,展示了如何以编程方式添加内容。

这是一个例子:

// create a button object
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];    

// attach a method 'buttonPressed' when the button is pressed.
[button addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchDown]; 

// set the text shown on the button
[button setTitle:@"buttonTitle" forState:UIControlStateNormal]; 

// set the size of the button
button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0); 

// add the button to your view
[view addSubview:button]; 
于 2013-08-15T16:54:24.710 回答