IOS application using Cordova, Application font size not changing when i change font size in settings

I am creating IOS application using Cordova, In Application font size not changing, when i change font size in General settings. I searched a lot but cannot find the solution.In my application i am not using MobileAccessibility.

window.MobileAccessibility.usePreferredTextZoom(false);

Even though its not working.

Upvotes: 0

Views: 408

Answers (1)

I found the solution for my problem.

I removed the body font size

font-size: 100%; 

and by adding font in my body tag, resolved my problem.

font: -apple-system-body;

Upvotes: 1

Related Questions