iPhone - 聊天风格的应用程序需要哪些控件? (简单的问题)
在我的应用程序的一部分中,我需要在两个用户之间进行聊天...我知道如何在两者之间发送消息,但我不知道我必须在用户界面中使用的最佳控件是什么...我想要类似 WhatsApp 的 UI(简单且非常好看)
例如:
(来源:mzstatic.com)
在底部...也许是一个 UIToolBar + UITextField + 2x UIBarButtonItem?
在中间(消息)...我真的不知道,这是我最大的问题,气泡。
在顶部...也许是一个 UINavigationBar + 2x UIBarButtonItem?
我是 UI 制作新手,但我确信这对您来说是一个简单的问题,这是我必须学习完成我的应用程序的最后一步 =)
我不需要代码,只需要 UIcontrols/hierarchy 和/或任何想法,如果可能的话=)
提前致谢;)
PS:对不起我的英语:S
In a portion of my app I need to make a chat between two users... I know how to send the messages between both but I don't know what are the best controls I have to use in the UI... I want a UI similar to WhatsApp(simple and very good looking)
For example:
(source: mzstatic.com)
At the bottom... maybe a UIToolBar + UITextField + 2x UIBarButtonItem?
In the middle(the messages)... I really don't know, this is my biggest question, the bubbles.
In the Top... maybe a UINavigationBar + 2x UIBarButtonItem?
I'm new making UIs but I'm sure that this is a easy question for you and this is the final step that I have to learn to finish my app =)
I don't want code, only the UIcontrols/hierarchy and/or any ideas if it's possible =)
Thanks in advance ;)
P.S: Sorry for my english :S
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你对顶部
UINavigationBar
和 2xUIBarButtonItems
的看法是正确的,中间看起来像一个
UIScrollView
并且每个聊天气泡都使用可拉伸的UIImage
[UIImagestretchableImageWithLeftCapWidth:15 topCapHeight:13]
如果上面的代码没有帮助,您可以查看下面的链接。这就是 Twitter 客户端 tweetie 在其带有 UITableView 的客户端中使用聊天气泡的方式。
http://blog.atebits.com/2008 /12/fast-scrolling-in-tweetie-with-uitableview/
底部可能是一个带有两个的
UIToolBar
我认为UIButton
不是 Barbuttons,当然还有UITextField
you're right about the top
UINavigationBar
with 2xUIBarButtonItems
The middle seems like a
UIScrollView
and each chat bubble is using a stretchableUIImage
[UIImage stretchableImageWithLeftCapWidth:15 topCapHeight:13]
If the above piece of code doesn't help out you can look at the link below. This is how tweetie, the Twitter client used chat bubbles in its client with UITableView.
http://blog.atebits.com/2008/12/fast-scrolling-in-tweetie-with-uitableview/
The bottom is probably a
UIToolBar
with twoUIButton
not Barbuttons I think and of course aUITextField