0

我正在为 iPhone 开发 IRC 客户端,但我的 UITableView 出现问题。

首先,我调整了 tableview 的大小,以便在用户输入消息时工具栏和键盘适合屏幕。看起来像这样:

用户输入模式

但问题是,当用户完成输入并想要发送消息(发送到流并添加到表格视图)时,表格视图被调整大小并且工具栏被放在底部但键盘仍然存在,我不知道哪个文本字段要辞去第一响应者的职务,我想在按下发送按钮之前和之后将键盘和工具栏保持在其位置。看起来像这样:

失败模式

这是我的一些代码:

- 调整窗口大小

// Keyboard will show
- (void)keyboardWillShow {
    [UIView animateWithDuration:0.25 animations:^{
        [self.tableView setFrame:CGRectMake(0, 0, 320, 177)];
    }];

    [UIView animateWithDuration:0.25 animations:^{
        [self.toolBar setFrame:CGRectMake(0, 177, 320, 43)];
    }];    
}

// Keyboard will hide
- (void)keyboardWillHide {
    [UIView animateWithDuration:0.25 animations:^{
        [self.tableView setFrame:CGRectMake(0, 0, 320, 481)];
    }];

    [UIView animateWithDuration:0.25 animations:^{
        [self.toolBar setFrame:CGRectMake(0, 393, 320, 43)];
    }];    
}

- 向表格视图添加元素

// Retrieve the sender and the message from the input and add it to the data context
- (void)addMessage:(NSString *) input isSender: (BOOL) sender {
    Message *messageToBeAdded = [[Message alloc] init];
    [messageToBeAdded setIsSender:sender];

    NSArray *arr = [input componentsSeparatedByString:[NSString stringWithFormat:@"PRIVMSG %@ :",[connection channel]]];
    [messageToBeAdded setMessage:[arr objectAtIndex:1]];

    arr = [input componentsSeparatedByString:@"!"];

    if (sender) {
        [messageToBeAdded setSender:[connection nick]];
    } else {
        NSString *tmp = [arr objectAtIndex:0];
        [messageToBeAdded setSender:[tmp substringWithRange:NSMakeRange(1, [tmp length]-1)]];
    }

    [_messageList addObject:messageToBeAdded];

    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:[_messageList count]-1 inSection:0];
    [self.tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
}

我到处看了,我确定它与 tableview 的添加部分有关。我将不胜感激任何帮助或指导。

谢谢!

编辑:我刚刚意识到这与使用自定义单元格有关。我创建了一个新项目并尝试逐步模拟我所做的事情。在我使用带有 UILabel 的自定义单元格时,一切都运行良好。UILabel 通过插座连接到 UITableViewCell 类,这就是问题发生的地方。

#import <UIKit/UIKit.h>

@interface CustomCell : UITableViewCell

@property (strong, nonatomic) IBOutlet UILabel *myLabel;
@end

有没有想过这里可能有什么问题?

4

3 回答 3

1

文本字段控制键盘,因此 resignfirstresponder 向键盘发送一条消息以删除自己。乐队是移动到屏幕底部还是在按下发送按钮后被移除。无论哪种方式,按照迈克尔说的去做,一旦键盘消失,你就会知道横幅会发生什么。我希望这有帮助!

于 2013-04-23T00:23:15.913 回答
1

我猜你UITextField的工具栏中有一个。尝试...

[aTextField resignFirstResponder];

...当您处理按下发送/返回按钮时。

于 2013-04-22T21:20:15.200 回答
1

您可以使用 UITextFieldDelegate -

-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
     [textField resignFirstResponder];
}

或者,如果您有 textField 的 IBOutlet,则在“键盘将隐藏”中调用 resignFirstResponder

// Keyboard will hide
- (void)keyboardWillHide {

      [self.myTextField resignFirstResponder];

      [UIView animateWithDuration:0.25 animations:^{
          [self.tableView setFrame:CGRectMake(0, 0, 320, 481)];
      }];

      [UIView animateWithDuration:0.25 animations:^{
          [self.toolBar setFrame:CGRectMake(0, 393, 320, 43)];
      }];    
}
于 2013-04-23T05:28:37.827 回答