UITableViewCell
iPadアプリのサブクラスを作成しました。テキストフィールドを動的に生成し、ユーザーから入力を受け取り、その情報を配列に格納する必要があります。私は、View Controllerのセグエの前にユーザーが書いたものをすべて保持するオブジェクトを要求することを考えました(セグエが呼び出されたときにオブジェクトを保存していUITableViewCell
ます)。だから私は.textオブジェクトを要求するUITableViewCellsの配列を持っています。しかし、何らかの理由で、私のサブクラスが作成されている間、私はそうではありません。呼び出すことができ、初期化されていますが、nilです。UITextField.text
NSString
UITextField
UITableViewCell
UITextField
UITableViewSubclass
UITableViewSubclass.UITextField
これが私のUITableViewCell
サブクラスヘッダーです(はい、UITextField
ストーリーボードで接続されています):
#import <UIKit/UIKit.h>
@interface ConditionCell : UITableViewCell
@property (strong, nonatomic) IBOutlet UITextField *condition;
@end
これが私の実装ファイルです:
#import "ConditionCell.h"
@implementation ConditionCell
@synthesize condition;
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
self.condition = (UITextField *)[self viewWithTag:10];
}
return self;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end
これは、セルを含むテーブルを処理するテーブルビューコントローラーです。
.hファイル:
#import <UIKit/UIKit.h>
#import "ConditionCell.h"
@interface ConditionsTableViewController : UITableViewController
@property (strong, nonatomic) NSMutableArray *conditionCellArray;
- (void)addNewConditionCell;
@end
.mファイル:
#import "ConditionsTableViewController.h"
@interface ConditionsTableViewController ()
@end
@implementation ConditionsTableViewController
@synthesize conditionCellArray = _conditionCellArray;
- (NSMutableArray *)conditionCellArray
{
if (_conditionCellArray == nil) {
// Create the array object
_conditionCellArray = [[NSMutableArray alloc] init];
}
return _conditionCellArray;
}
- (void)addNewConditionCell
{
ConditionCell *condCell = [[ConditionCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"conditionCell"];
[self.conditionCellArray addObject:condCell];
[self.tableView beginUpdates];
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:self.conditionCellArray.count-1 inSection:0];
[self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationTop];
[self.tableView endUpdates];
[self.tableView reloadData];
}
- (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.
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return self.conditionCellArray.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"conditionCell";
ConditionCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[ConditionCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
//cell.condition = (UITextField *)[cell viewWithTag:1];
return cell;
}
// 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 - Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Navigation logic may go here. Create and push another view controller.
/*
<#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName:@"<#Nib name#>" bundle:nil];
// ...
// Pass the selected object to the new view controller.
[self.navigationController pushViewController:detailViewController animated:YES];
*/
}
@end
テーブルビューが画面全体を占めるわけではないため、このテーブルビューコントローラーはUIViewコントローラー内にあります。ユーザーが「ok」ボタンを押すと、トリガーされるセグエがあります。ここで、このTable View Controllerに、を含む配列を要求UITableViewCells
します。次に、foreachを実行して.textプロパティを取得します。残念ながら、テキストフィールドに入力したものを取得できないようです。そのため、.textは常にnilです。誰かがこの問題で私を助けることができればそれは大いにありがたいです!