IBOutlet を UITextField に接続すると、この奇妙なエラーが発生します。この1つのView Controllerでのみ発生しているため、本当に奇妙です。これとほぼ同じビュー コントローラーが他に 2 つあり、それらは完全に機能します。ストーリーボードにテーブル ビュー コントローラーがあります。2 つのグループ化されたセクションがあり、それぞれに静的セルがあります。各セルには UITextField があります。これで、テキストフィールドをクラスに接続せずに実行すると、ビューが正常に読み込まれます。ただし、それらを接続すると、ビューが読み込まれるとすぐに、テキストフィールドごとに1つずつ、このエラーでアプリがクラッシュします: [UITextField stringByTrimmingCharactersInSet:]: unrecognized selector sent to instance
これの原因は何でしょうか?同じ内容の他のテーブルビュー コントローラーがあり、このエラーが発生したことがないため、非常に混乱しています。
私の状況をさらに説明するのに役立ついくつかのスクリーンショットを次に示します。
私の .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