我是新開發的iOS。 我有這樣的錯誤...「線程1:斷點1.1」。如何修復這個錯誤:如何解決Xcode中的線程錯誤?
這是頭(.h)文件
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController<UITextFieldDelegate>
@property (weak, nonatomic) IBOutlet UITextField *passwordTextField;
@property (weak, nonatomic) IBOutlet UITextField *usernameTextField;
- (IBAction)tekan:(id)sender;
@end
這是實現(.M)文件
//
// ViewController.m
// Example1
//
// Created by Andika Kurniawan on 10/6/14.
// Copyright (c) 2014 Indonative. All rights reserved.
//
#import "ViewController.h"
@interface ViewController()
@end
@implementation ViewController
@synthesize passwordTextField;
- (void)viewDidLoad {
[super viewDidLoad];
self.passwordTextField.delegate = self;
self.usernameTextField.delegate = self;
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)tekan:(id)sender {
UIAlertView *helloEarthInputAlert = [[UIAlertView alloc]
initWithTitle:@"Name!" message:[NSString stringWithFormat:@"Message: %@", passwordTextField.text]
delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
// Display this message.
[helloEarthInputAlert show];
}
@end
上面的代碼是我的源代碼。 我想修復線程錯誤,,但我混淆......因爲我不知道我的源代碼中存在什麼錯誤。 在這個應用程序的插座和操作沒有錯誤
我想你只需點擊其中寫有34行的34的藍色標記。這是一個斷點,導致您的代碼在第34行停止。 – divyenduz 2014-10-06 17:09:50