2014-10-06 37 views
0

我是新開發的iOS。 我有這樣的錯誤...「線程1:斷點1.1」。如何修復這個錯誤:如何解決Xcode中的線程錯誤?

enter image description here

這是頭(.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 

上面的代碼是我的源代碼。 我想修復線程錯誤,,但我混淆......因爲我不知道我的源代碼中存在什麼錯誤。 在這個應用程序的插座和操作沒有錯誤

+0

我想你只需點擊其中寫有34行的34的藍色標記。這是一個斷點,導致您的代碼在第34行停止。 – divyenduz 2014-10-06 17:09:50

回答

4

enter image description here您不要有錯誤一個破發點。你只有一個斷點。按下調試菜單中的play(控制檯上方和內存中的值),應用程序應繼續執行。

+0

謝謝,你的回答已完成 – AndikaK 2014-10-06 17:16:43

+2

請標記爲正確的!謝謝 – 2014-10-06 17:17:47

0

我想你只需要點擊其中寫34行34的藍色標記。這是導致你的代碼停止線34

感謝

+0

謝謝,但下面的回答者回答我的問題細節 – AndikaK 2014-10-06 17:16:23

+0

當然,沒有問題。我只是想幫忙。 :) – divyenduz 2014-10-06 17:17:38

+0

我很高興:( – AndikaK 2014-10-06 18:09:11

相關問題