伊恩使用UIBubbleTableView进行聊天应用。工作完美,但我不想约会和时间。有什么帮助吗?
以下是我的代码:
NSBubbleData *heyBubble = [NSBubbleData dataWithText:@"Hi, this is abcd, how are you?" date:[NSDate dateWithTimeIntervalSinceNow:-300] type:BubbleTypeSomeoneElse];
尝试向日期输入发送nil,但不显示数据
任何帮助?如何进一步处理?
答案 0 :(得分:2)
你试过这个:
NSBubbleData *sayBubble = [NSBubbleData dataWithText:textField.text date:[NSDate dateWithTimeIntervalSinceNow:0] type:BubbleTypeSomeoneElse];
如果不是,我的想法是你可以在lib中进行更改,只需检查将date
作为nil
传递,以便该表隐藏要显示的日期。