- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
当我将 IBOutlet 连接到 UITextField 时,我遇到了这个奇怪的错误。这真的很奇怪,因为它只发生在这个单一的 View Controller 中。我有另外两个几乎与这个相同的 View Controller ,它们运行完美。我的 Storyboard 中有一个 TableView Controller 。它有 2 个分组部分,每个部分都有静态单元格。每个单元格中都有一个 UITextField。现在,如果我只是在不将文本字段连接到我的类的情况下运行它,则该 View 可以正常加载。但是,当我连接它们时, View 一加载 - 应用程序崩溃并出现此错误,每个文本字段一个:[UITextField stringByTrimmingCharactersInSet:]: unrecognized selector sent to instance
知道这可能是什么原因吗?我很困惑,因为我有其他具有相同内容的 tableview Controller ,而且我从来没有遇到过这个错误。
这里有一些截图可以帮助进一步解释我的情况:
这是我的 .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
最佳答案
您在 View Controller 中声明了两个属性,title
和 description
,UIViewControlller
已经定义和 NSObject
分别。最初定义的这两个属性都是 NSString
。
iOS 可能正在尝试访问这些属性,期待 NSString
,并获取您的 UITextField
之一。
尝试重命名这些属性,您的问题应该会消失。
关于iphone - 将 IBOutlet 连接到 UITextField 后出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19479164/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!