标准 UITableVIew 单元格 UILabel 和 UILabel 使用的字体是什么? UITextFiled?

发布于 2024-12-09 02:11:48 字数 301 浏览 0 评论 0原文

背景:我正在创建一个自定义 UITableViewCell 并添加一些带有文本的视图,并希望匹配苹果用于标准控件的字体/大小/颜色

问题:使用的字体/大小是什么,比如说iPhone / 设置 / Safari / 第一个 tableviewcell 用于:

A)标题文本,即我的示例中的“搜索引擎” B) 当前值蓝色文本,在我的示例中为“google”

也就是说,如果创建 UILabelUITextField 等效项,我将如何看到它们的字体看起来相同?

Background: I am creating a custom UITableViewCell and adding some views with text and want to match the font/size/colour that apple uses for standard controls

Questions: what are the fonts/sizes used, in say the iPhone / Settings / Safari / 1st tableviewcell for:

A) title text, ie "search engine" in my example
B) current value blueish text, "google" for my example

That is if was creating the UILabel and UITextField eqivalents how would I see their fonts to look the same?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

轮廓§ 2024-12-16 02:11:48

你应该能够显示它,我想,当你有一个 UITableViewCell*

NSLog(@"Cell font is %@", cell.textLabel.font);

我认为它要么(不确定尺寸)

[UIFont systemFontWithSize:]
[UIFont boldSystemFontWithSize:]

你总是可以通过创建一个默认单元格并将你的 UILabel 设置为未来的标签来证明它相同的字体

label.font = cell.textLabel.font;

You should be able to display it I would have thought, when you have a UITableViewCell*

NSLog(@"Cell font is %@", cell.textLabel.font);

I think it's either (not sure about the sizes)

[UIFont systemFontWithSize:]
[UIFont boldSystemFontWithSize:]

You could always make it future proof for your label by creating a default cell and setting your UILabel to the same font

label.font = cell.textLabel.font;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文