4

IBOutlet を UITextField に接続すると、この奇妙なエラーが発生します。この1つのView Controllerでのみ発生しているため、本当に奇妙です。これとほぼ同じビュー コントローラーが他に 2 つあり、それらは完全に機能します。ストーリーボードにテーブル ビュー コントローラーがあります。2 つのグループ化されたセクションがあり、それぞれに静的セルがあります。各セルには UITextField があります。これで、テキストフィールドをクラスに接続せずに実行すると、ビューが正常に読み込まれます。ただし、それらを接続すると、ビューが読み込まれるとすぐに、テキストフィールドごとに1つずつ、このエラーでアプリがクラッシュします: [UITextField stringByTrimmingCharactersInSet:]: unrecognized selector sent to instance

これの原因は何でしょうか?同じ内容の他のテーブルビュー コントローラーがあり、このエラーが発生したことがないため、非常に混乱しています。

私の状況をさらに説明するのに役立ついくつかのスクリーンショットを次に示します。

Xcodeからの配線図

ヘッダー ファイル内のプロパティのリスト

私の .m ファイルのコードは次のとおりです。

    //
//  IdeaViewController.m
//  FinalJSApp
//
//  Created by Jacob Klapper on 10/20/13.
//
//

#import "IdeaViewController.h"

@interface IdeaViewController ()

@end

@implementation IdeaViewController

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    // Uncomment the following line to preserve selection between presentations.
    // self.clearsSelectionOnViewWillAppear = NO;

    // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
    // self.navigationItem.rightBarButtonItem = self.editButtonItem;
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


/*
// Override to support conditional editing of the table view.
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Return NO if you do not want the specified item to be editable.
    return YES;
}
*/

/*
// Override to support editing the table view.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        // Delete the row from the data source
        [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
    }   
    else if (editingStyle == UITableViewCellEditingStyleInsert) {
        // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
    }   
}
*/

/*
// Override to support rearranging the table view.
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath
{
}
*/

/*
// Override to support conditional rearranging of the table view.
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Return NO if you do not want the item to be re-orderable.
    return YES;
}
*/

/*
#pragma mark - Navigation

// In a story board-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}

 */

@end
4

2 に答える 2

15

ビュー コントローラでtitleとの2 つのプロパティを宣言します。これらのプロパティは、 とによってそれぞれ定義されています。最初に定義されたこれらのプロパティは両方ともs です。descriptionUIViewControlllerNSObjectNSString

iOS はおそらくこれらのプロパティにアクセスしようとしており、 を期待してNSString、 の 1 つを取得していますUITextField

これらのプロパティの名前を変更してみてください。問題は解決するはずです。

于 2013-10-20T17:16:46.073 に答える
0

あなたは何らかの形でstringByTrimmingCharactersInSet: を a に送信していUITextFieldます。しかしstringByTrimmingCharactersInSet、のインスタンスメソッドでNSStringあり、UITextField実装されていないためstringByTrimmingCharactersInSet、インスタンスに送信された認識されないセレクターというエラーが発生します。

于 2013-10-20T15:40:40.680 に答える