0

私はUITextfieldを持っています.UITextfieldから入力されたテキストを含む新しいUITextviewを挿入するたびに作成したいです。しかし、ご覧のとおり、私の問題は、新しく作成された各 Textview が古い Textview の上にあり、新しい Textview を作成した場合に Textview を自動的に相互に配置する方法がわからないことです。

私のテックスフィールド:

self.inputComment = [[GTTextField alloc]initWithFrame:CGRectMake(0,self.mainView.frame.origin.y + self.mainView.frame.size.height - 100.0f, self.frame.size.width, 100.0f)];

    self.inputComment.placeholder = @"Answer";
    self.inputComment.font = GTDefaultTextFont;
    self.inputComment.textColor = GTDefaultTextColor;
    self.inputComment.userInteractionEnabled = YES;
    self.inputComment.returnKeyType = UIReturnKeyDone;
    [self.inputComment resignFirstResponder];
    self.inputComment.delegate = self;
    [self.mainView addSubview: self.inputComment];

ここでは、テキストフィールドからの入力を終了した直後に、新しい Textviews を作成します。

- (void)textFieldDidEndEditing:(UITextField *)textField{

NSString *saveText = self.inputComment.text;

self.containerCommentView = [[[GTView alloc] initWithFrame:CGRectMake(0.0f,self.messageView.frame.origin.y + self.messageView.frame.size.height,self.frame.size.width, 100.0f)] autorelease];
self.containerCommentView.backgroundColor = [UIColor lightGrayColor];
[self.scrollView addSubview: self.containerCommentView];

self.commentImageView = [[[GTImageView alloc] initWithFrame:CGRectMake(0.0f, 0.0f,50, 50.0f)] autorelease];
[self.containerCommentView addSubview:self.commentImageView];

self.commentView = [[[GTTextView alloc] initWithFrame:CGRectMake(50.0f, 0.0f,270.0f, 100.0f)] autorelease];
self.commentView.userInteractionEnabled = NO;
self.commentView.textColor = [UIColor blackColor];
self.commentView.backgroundColor = [UIColor lightGrayColor];
[self.commentView setText: saveText];

[self.containerCommentView addSubview: self.commentView];

}

あなたが私を助けてくれることを願っています:)

編集:

UITableView を使用するようになりましたが、エラーが発生します: キャッチされない例外 'NSInternalInconsistencyException' が原因でアプリを終了しています。

私のコード:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:    (NSInteger)section {
return [self.commentArray count];

}

- (void)buttonTapped:(id)sender {


[self.tableView beginUpdates];

int rowIndex = self.commentArray.count;
[self.commentArray insertObject:[[NSString alloc] initWithFormat:@"%@", self.inputComment.text]
                        atIndex:rowIndex];


// Notify UITableView that updates have occurred
NSArray *insertIndexPaths = [NSArray arrayWithObject:
                             [NSIndexPath indexPathForRow:rowIndex inSection:0]];
[self.tableView insertRowsAtIndexPaths:insertIndexPaths
                      withRowAnimation:UITableViewRowAnimationRight];

[self.tableView endUpdates];

self.inputComment.text = @"";

}

1セクションだけ欲しい!

私の問題はどこにありますか?

4

1 に答える 1