Different font size for UILabel using adaptive layout
Asked Answered
V

2

9

In Xcode 6 we have a new feature called adaptive layout. By using that I have created a new project in which it I need to have different font size based on the layout.

In iPhone 3.5 inch screen I must have font size as 17pt, and other screen size in iPhone must be 21pt.

Can anyone tell me how I can achieve this using adaptive layout?

Victorvictoria answered 7/10, 2014 at 12:34 Comment(1)
check this link, you have to scroll down to Adaptive Fonts section, there is something similar to what you want.Radiative
P
4

Yes, you can do with storyboad. There is a + sign on the left of the font, click it and select the size class and choose the font size needed

Premature answered 27/2, 2015 at 14:19 Comment(1)
Yes, that is correct. But my doubt how to achieve different font size for different iPhone screen.Victorvictoria
A
2

In viewDidAppear or viewWillAppear, you can detect the size of the layout. You only have to update font size based on the detected size.
You can use [[UIScreen mainScreen] bounds]; or in iOS8 : [[UIScreen mainScreen] nativeBounds];

Andradite answered 7/10, 2014 at 12:39 Comment(1)
In the latest xcode 6 we can set the font size for UILabel using attribute inspector in storyboard and I need to how should I achieve it using storyboard and also this one also helps me.Victorvictoria

© 2022 - 2024 — McMap. All rights reserved.