Reputation: 175
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
Reputation: 175
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