我是IOS开发的新手,我需要在应用程序首次启动时动态加载内容(按钮)。任何人都可以帮我指导吗?我参加了培训,但不幸的是我没有学到这一点。我在ViewController中已经有了一个方法但是如何执行该方法onload?
感谢您的帮助。
答案 0 :(得分: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];