我正在尝试创建一个评论页面,我使用 UITextView 作为添加评论的空间,使用 UILabel 作为打印评论的地方。我想知道如何使评论“粘贴”在页面上?目前,每次在 UITextView 中输入新内容时,它都会不断被重写。非常感谢!
编辑2:
这是我的代码......我需要将数据存储在某个服务器上吗?
在我的头文件中:
{
IBOutlet UITextView *commentBox;
IBOutlet UILabel *commentsDisplay;
}
-(IBAction)submit;
在我的实现文件中:
-(IBAction)submit{
NSMutableString *tmpStr = [[NSMutableString alloc]initWithString:commentsDisplay.text];
[tmpStr stringByAppendingString:[NSString stringWithFormat:@"%@", commentBox.text]];
[commentsDisplay setText:tmpStr];
commentBox.text = @"";
[commentBox resignFirstResponder];
}