1a) 在 xcode 窗口的右上角,有一个燕尾服图标。这是助理编辑。选择故事板,选择 ViewController,然后选择助手编辑器。将出现第二个编辑器。确保它正在编辑 ViewController.h。按下控制并从情节提要中的进度视图拖动到 ViewController 接口定义内的某个点。(就在如下所示的行之后:)@interface ViewController : UIViewController
您将被提示输入一个出口名称。键入类似“progressView”(不带引号)的内容。
1b)见下文将进度视图设置为一个值。
2)见下文,在延迟后呈现第二个视图控制器。
3) 在情节提要中,将一个新的视图控制器拖到画布上。在身份检查器上(尝试燕尾服图标下的图标,左起第三个是身份),将其类设置为 MySecondController。选择原来的 ViewController,按下 control 并从它的状态栏(它的顶部)拖到你刚刚添加的 viewcontroller。这将创建一个转场。将出现一个菜单,询问您想要什么样的 segue。现在制作 segue 模态。单击新的 segue 将其选中,然后单击属性检查器(在身份检查器旁边)给 segue 一个标识符,称之为“MySecondControllerSegue”。
回到问题 1b 和 2) 转到 ViewController.m 并添加此代码...
@synthesize progressView;
// this creates methods on self to access the progress view
// this is called after the view appears
- (void)viewDidAppear:(BOOL)animated {
// do inherited behavior
[super viewDidAppear:animated];
// set the progress view value to a number between 0.0-1.0, representing percentage
// notice how we used the synthesized getter: self.progressView
self.progressView.progress = 0.5;
// call another method with no parameters after five seconds
[self performSelector:@selector(doSegue) withObject:nil afterDelay:5.0];
}
- (void)doSegue {
// run the segue that you created in IB
[self performSegueWithIdentifier:@"MySecondControllerSegue" sender:self];
}
构建并运行。
完成此操作后,您可能希望显示在 5 秒内从 0.0 位置前进到 1.0 的进度视图。为此,您需要阅读有关 NSTimer 的信息。可以设置一个定时给你发消息,每次可以调整progressView。