iPhone 消息应用程序,如文本字段
我试图将我的 iPhone 应用程序的文本字段设置为类似于消息应用程序中的文本字段。我无法将文本字段设置为像消息传递应用程序那样具有阴影。消息传递应用程序有一个落在内部并具有渐变的阴影。我该怎么做?另外,将 ClipsToBounds 属性设置为 yes 不会让阴影出现。但是,不启用该功能会将文本推出文本字段的范围。我该如何处理?
我如何模仿这些行为?
谢谢
I was trying to style my iphone app's textfield like the one in the messaging app. I could not style the textfield to have shadow like the messaging app. Messaging app has a shadow that drops inside and has a gradient. How do I do that? Also, setting the clipsToBounds property to yes doesn't let shadow appear. But, not enabling that pushes the text out of the bounds of the textField. How do I handle that?
How do I emulate these behavior?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用带有自定义 UITableViewCells 的 UITableView - 这将允许您根据自己的喜好调整外观(具体来说,听起来您想要一个具有自定义背景的单元格,以及位于单元格内的透明 UITextField (无边框)。
I would suggest a UITableView with custom UITableViewCells - that would allow you to tweak the look to your heart's content (specifically, it sounds like you want a cell with a custom background, and a transparent UITextField (without border) positioned within the cell.