iphone - 使用 segue 和 Storyboard从一个 Controller 移动到另一个 Controller
<p><p>我已经完成了 Apple 开发人员工具资源中的第一个教程,您可以在其中进行输入、标签和按钮,我想要做的是,当您按下按钮时,它会将您带到一个新场景,所以我已经设置了segue,我现在将其命名为“testPush”,当我按下按钮时,我实际上如何让它移动,我得到一个错误提示</p>
<pre><code>**Thread 1: signal SIGABRT**
</code></pre>
<p>它回复的代码是这样的</p>
<pre><code>return UIApplicationMain(argc, argv, nil, NSStringFromClass());
</code></pre>
<p>任何人都有任何想法,我知道你需要添加代码才能使 segue 工作,但是我所看到的一切都没有意义,或者它只是一段代码,几乎没有关于你如何得到它的说明工作等。感谢您的所有帮助</p>
<p>您可能需要的其他东西我不确定
场景一被称为:HelloWorldViewController
场景二调用:HelloWorldViewController2</p>
<p>编辑</p>
<p>这是我脚本中的代码,您需要它,谢谢。
HelloWorldViewController.m</p>
<pre><code> #import "HelloWorldViewController.h"
@interface HelloWorldViewController ()
@property (weak, nonatomic) IBOutlet UITextField *textField;
@property (weak, nonatomic) IBOutlet UILabel *label;
- (IBAction)changeGreeting:(id)sender;
@end
@implementation HelloWorldViewController
- (void)viewDidLoad
{
;
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
;
// Dispose of any resources that can be recreated.
}
- (IBAction)changeGreeting:(id)sender {
self.userName = self.textField.text;
NSString *nameString = self.userName;
if ( == 0) {
nameString = @"World";
}
NSString *greeting = [ initWithFormat:@"Hello, %@!", nameString];
self.label.text = greeting;
}
- (BOOL)textFieldShouldReturn:(UITextField *)theTextField {
if (theTextField == self.textField) {
;
}
return YES;
}
@end
</code></pre>
<p>HelloWorldViewController.h</p>
<pre><code>#import <UIKit/UIKit.h>
@interface HelloWorldViewController : UIViewController <UITextFieldDelegate>
@property (copy,nonatomic) NSString *userName;
@end
</code></pre>
<p>还有 main.m</p>
<pre><code>#import <UIKit/UIKit.h>
#import "HelloWorldAppDelegate.h"
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass());
}
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>尝试在您的 <code>IBAction</code> 中添加 <code>performseguewithidentifier</code>,如下所示:</p>
<pre><code>- (IBAction)changeGreeting:(id)sender {
self.userName = self.textField.text;
NSString *nameString = self.userName;
if ( == 0) {
nameString = @"World";
}
NSString *greeting = [ initWithFormat:@"Hello, %@!", nameString];
self.label.text = greeting;
;
}
</code></pre>
<p>这应该会为您推送新内容。 </p></p>
<p style="font-size: 20px;">关于iphone - 使用 segue 和 Storyboard从一个 Controller 移动到另一个 Controller ,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/18466827/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/18466827/
</a>
</p>
页:
[1]