如何在iPhone的Titanium框架中将FontSize赋予tableview?
我正在为 tableview 创建钛框架应用程序,我能够将数据加载/显示到表中。但是如何给出 FONTSIZE,以便我可以管理文本大小......
请帮助我使用任何有用的链接或任何例如...
感谢您的帮助!
谢谢, 米沙尔·沙阿
I am creating titanium framework application for tableview,I am able to load/show data into the table.But how to give FONTSIZE, so i can manage the text size......
please help me out using any useful link or any example....
Thanks for help!!!
Thanks,
Mishal Shah
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要先创建一个自定义标签,然后
row.add(label)
。https://github.com/appcelerator/titanium_mobile /blob/master/demos/KitchenSink/Resources/examples/table_view_layout_2.js
使用上面的示例,您可以构建行以使其看起来像您需要的那样。
You would need to do a custom label then
row.add(label)
.https://github.com/appcelerator/titanium_mobile/blob/master/demos/KitchenSink/Resources/examples/table_view_layout_2.js
Use the above example and you can build your rows to look however you need them.