gpt4 book ai didi

iphone - 在 xcode 的 Storyboard 中添加和控制 View Controller

转载 作者:行者123 更新时间:2023-12-01 18:27:27 27 4
gpt4 key购买 nike

我是 iphone 编程的新手,我创建了一个特殊的场景。我很确定它会回答我创建应用程序的大部分问题。这里是。 (我有 Xcode 4.2 )

我创建了一个带有 Storyboard和单一 View 的通用应用程序。

我有 appDelegate , storyboard files和一个类文件ViewController.h/m我最初的 ViewController .

假设我添加了 progress View (以图形方式)在 View Controller 上。我还添加了另一个 viewController在 Storyboard上并使其背景变黑。

当我运行应用程序时,我的第一个 viewController显示进度 View

现在我的问题是

1-如何在类文件中链接我的进度 View 以及如何将其设置为 5 秒。

2- 在 5 秒内显示进度后,它应该切换到具有黑色背景的其他 View Controller 。

3- 我创建了一个类文件“MySecondController”我如何将这个类链接到我的黑屏 View Controller 。

这些都是简单的问题。我希望我能得到这些答案。如果有人有链接到这些问题的教程,请发布。我已经尝试过,但没有发现有用。

最好的祝福

最佳答案

1a) 在 xcode 窗口的右上角,有一个燕尾服图标。这是助理编辑。选择 Storyboard,选择 ViewController,然后选择助手编辑器。将出现第二个编辑器。确保它正在编辑 ViewController.h。按下控制并从 Storyboard 中的进度 View 拖动到 ViewController 接口(interface)定义内的某个点。 (就在如下所示的行之后: @interface ViewController : UIViewController )您将被提示输入一个导出名称。键入类似“progressView”(不带引号)的内容。

1b)见下文将进度 View 设置为一个值。

2)见下文,在延迟后呈现第二个 View Controller 。

3) 在 Storyboard 中,将一个新的 View Controller 拖到 Canvas 上。在身份检查器上(尝试燕尾服图标下的图标,左起第三个是身份),将其类设置为 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 的进度 View 。为此,您需要阅读有关 NSTimer 的信息。可以设置一个定时给你发消息,每次可以调整progressView。

关于iphone - 在 xcode 的 Storyboard 中添加和控制 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12119451/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com