当用户将文本字段留空时,标签之间有空格
嗨 我有一些文本字段,在解码后设置一些 UILabel。问题是,如果用户留下一些空白字段,我不喜欢看到标签之间的空间。我附上一张图片以便更好地理解。提前致谢。
Hi
I have some text field which, after a decoding, set some UILabel. The problem is that if the user leave some empty field , I don't like to see that space between the labels. I enclose a picture for a better understanding. thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用带有自定义单元格的 uitableview 而不是下面的视图
每个自定义单元格都有一个标签...并且当且仅当您在 textfeild 中有一个有效字符串时添加一个单元格..设置 userinteraction=NO 并设置一些背景颜色以匹配您的视图..
只需将该字符串放入 uilabel 中自定义单元格...就是这样..
instead of the view below use a uitableview with custom cells
Each custom cell having a label ...and add a cell if and only if u have a valid string in a textfeild..set userinteraction=NO and set some backgroung color to match ur view..
just put that string in the uilabel in the custom cell...thats it..