-1

私はこれについていくつかの調査を行いましたが、残念ながら答えはありません。ASCII コードを使用するコード マシンを作成しました。エラーや警告はありません。しかし、実行すると次のエラーが発生します: Thread 1: signal SIGBART。「コード化された」UITextViewに関係していると思いますが、よくわかりません。編集:「エンコード」ボタン ((IBAction)StartEncodeDecode) をクリックすると、クラッシュが発生します。

以下のすべての出力ログ。私がそんな初心者だなんて信じられない:

2013-08-28 14:00:57.086 Code Machine[2285:11303] -[CMViewController decodeEncode:]: 認識されないセレクターがインスタンス 0x7151190 に送信されました 2013-08-28 14:00:57.155 Code Machine[2285:11303] * アプリの終了due to uncaught exception 'NSInvalidArgumentException', reason: '-[CMViewController decodeEncode:]: unrecognized selector sent to instance 0x7151190' * First throw call stack: (0x1c94012 0x10d1e7e 0x1d1f4bd 0x1c83bbc 0x1c8394e 0x10e5705 0x192c0 0x19258 0xda021 0xda57f 0xd96e8 0x48cef 0x48f02 0x26d4a 0x18698 0x1befdf9 0x1befad0 0x1c09bf5 libc++abi.dylib: 例外をスローして呼び出された終了 (lldb)

編集を終了します。

コードは以下のとおりです。

Controller.m を表示:

#import "CMViewController.h"
#import "CMAEncode.h"

@interface CMViewController ()
@property (weak, nonatomic) IBOutlet UITextView *toCode;
@property (weak, nonatomic) IBOutlet UITextView *coded; //I think the problem is with this text view.
@property (weak, nonatomic) IBOutlet UISwitch *onOrOff;

- (IBAction)StartEncodeDecode:(id)sender;




@end


@implementation CMViewController


- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range
 replacementText:(NSString *)text
{

    if ([text isEqualToString:@"\n"]) {

        [textView resignFirstResponder];
        // Return FALSE so that the final '\n' character doesn't get added
        return NO;
    }
    // For any other character return TRUE so that the text gets added to the view
    return YES;
}
- (IBAction)StartEncodeDecode:(id)sender {

    NSString *finishedText;
    NSString *toCode = self.toCode.text;
    if (self.onOrOff.on == FALSE) {
        finishedText = [CMAEncode encodeText:toCode];
        self.coded.text = finishedText;
    } else { 
    }
}

@end

CMAEncode.m

#import "CMAEncode.h"

@implementation CMAEncode : NSObject 

+ (NSString *) encodeText:(NSString *)text {

    NSString *ToEncode = text;
    NSMutableString *Encoded = [NSMutableString string];
    int letter;
    NSUInteger i = 0;

    while (i < ([ToEncode length] - 1)) {
        letter = [ToEncode characterAtIndex:i];
        NSString *toAppend = [NSString stringWithFormat:@"%d|", letter];
        [Encoded appendString:toAppend];
        i = i + 1;
    }

    return Encoded;




}

@end

実際にエラーが発生したクラスは次のとおりです。main.m を呼び出します。

#import <UIKit/UIKit.h>

#import "CMAppDelegate.h"

int main(int argc, char *argv[])
{
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([CMAppDelegate class])); //This is where the error occurred.
    }
}

助けてくれてありがとう!

4

1 に答える 1