Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the text Jump problem of UILabel display timer

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces the relevant knowledge of "how to solve the text jump problem of UILabel display timer". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

First, let's take a look at a problematic display:

The above gif diagram will find problems with jumping and flickering when displaying the CAPTCHA count. Currently, most of the controls used to implement timer display are UILabel.

Before iOS9, the default English font was Helvetica, in which the width of each number was equal. After iOS9, the default English font is changed to San Fransico font, in which the width of each number is not equal.

It is precisely because of the unequal width of numbers that leads to the problem of text bounce and flicker when displaying timer text with UILabel. Therefore, the solution is to choose a digital font of equal width to display. There are two solutions to this:

Default font with Helvetica font code.

UILabel * label = [UILabel new]; label.font = [UIFont fontWithName:@ "Helvetica" size:16]

Use UIFont's new API: + (UIFont *) monospacedSystemFontOfSize: (CGFloat) fontSize weight: (UIFontWeight) weight

UILabel * label = [UILabel new]; / / remember that this API is not valid until it is iOS9! Label.font = [UIFont monospacedSystemFontOfSize:16 weight:UIFontWeightRegular]

This is the end of the content of "how to solve the text beat problem of UILabel display timer". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report