我正在为 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
有没有想过这里可能有什么问题?